We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to Get values from a UsedRange on an shared Excel.
Graph Explorer provides the following example:
<?php use Microsoft\Graph\GraphServiceClient; use Microsoft\Graph\Generated\Drives\Item\Items\Item\Workbook\Worksheets\Item\UsedRange\UsedRangeRequestBuilderGetRequestConfiguration; $graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes); $requestConfiguration = new UsedRangeRequestBuilderGetRequestConfiguration(); $queryParameters = UsedRangeRequestBuilderGetRequestConfiguration::createQueryParameters(); $queryParameters->select = ["text"]; $requestConfiguration->queryParameters = $queryParameters; $result = $graphServiceClient->drives()->byDriveId('drive-id')->items()->byDriveItemId('driveItem-id')->workbook()->worksheets()->byWorkbookWorksheetId('workbookWorksheet-id')->usedRange()->get($requestConfiguration)->wait();
This works on the graph explorer and you get the calculated field values, instead of the data without formulas applied.
However $queryParameters = UsedRangeRequestBuilderGetRequestConfiguration::createQueryParameters(); method does not exist.
Method added to the existing Code
No response
The text was updated successfully, but these errors were encountered:
rkodev
No branches or pull requests
Is your feature request related to a problem? Please describe the problem.
When trying to Get values from a UsedRange on an shared Excel.
Graph Explorer provides the following example:
This works on the graph explorer and you get the calculated field values, instead of the data without formulas applied.
However $queryParameters = UsedRangeRequestBuilderGetRequestConfiguration::createQueryParameters(); method does not exist.
Describe the solution you'd like.
Method added to the existing Code
Additional context?
No response
The text was updated successfully, but these errors were encountered: