-
Notifications
You must be signed in to change notification settings - Fork 2.1k
docs: document undocumented customer-facing changes from the last week #11652
New issue
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -61,7 +61,8 @@ A modal window with an authentication prompt will appear. Choose the deployments | |||||||||||||||||
| that you want to work with in Google Sheets and click **Authorize**. | ||||||||||||||||||
| Once you see the `Access Granted` message, close the modal window. | ||||||||||||||||||
|
|
||||||||||||||||||
| If you want to revoke the authentication, open the add-on menu and click | ||||||||||||||||||
| The add-on menu shows the current tenant, Cube account, deployment, and signed-in | ||||||||||||||||||
| user. If you want to revoke the authentication, open the add-on menu and click | ||||||||||||||||||
| **Sign out**. | ||||||||||||||||||
|
Comment on lines
+64
to
66
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: the new sentence about what the menu displays is grafted onto the sign-out paragraph, so two unrelated facts share one block. Splitting reads better and makes the display change findable:
Suggested change
Same applies to |
||||||||||||||||||
|
|
||||||||||||||||||
| ## Create reports via pivot table | ||||||||||||||||||
|
|
@@ -80,7 +81,13 @@ Google Cloud for Sheets works only with [views][ref-views], not cubes. | |||||||||||||||||
| Click on members to add them to **Rows** and **Measures**. | ||||||||||||||||||
| If needed, drag dimensions from **Rows** to **Columns**. Click on | ||||||||||||||||||
| the funnel buttons to add members to **Filters**. Click on **×** to | ||||||||||||||||||
| remove members from a query. | ||||||||||||||||||
| remove members from a query. Drag members within **Measures** to reorder them | ||||||||||||||||||
| in the output. | ||||||||||||||||||
|
|
||||||||||||||||||
| When a dimension is on **Columns**, the **Measure position** option controls | ||||||||||||||||||
| how measures nest relative to the column values: **After columns** (default) | ||||||||||||||||||
| nests measures under each column value, while **Before columns** makes each | ||||||||||||||||||
| measure span all column values. | ||||||||||||||||||
|
|
||||||||||||||||||
| <Frame> | ||||||||||||||||||
| <img src="https://ucarecdn.com/acc8e133-f237-4aa7-a725-f32dd4a2ebdb/" /> | ||||||||||||||||||
|
|
||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -244,6 +244,12 @@ work together. | |
| Call `searchDataModel` before `runQuery` to find exact view and member names rather than | ||
| guessing them. | ||
|
|
||
| `runQuery` also takes an optional `branchName` to query a [dev branch][ref-dev-mode] | ||
| instead of the deployed model — use it to verify a data model edit before committing it. | ||
| Every response reports the branch it actually ran against (`null` means the deployed | ||
| model). Keep `branchName` identical across paginated calls: dropping it on a later page | ||
| re-runs the query against the deployed model instead of continuing on the branch. | ||
|
Comment on lines
+247
to
+251
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A reader hitting this paragraph has no idea where a
Comment on lines
+250
to
+251
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "paginated calls" is ambiguous given the tool list above documents two pagination paths: If it's repeated |
||
|
|
||
| ### Dashboard authoring | ||
|
|
||
| These tools build [workbooks][ref-workbooks] and [dashboards][ref-dashboards] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,7 +69,8 @@ A modal window with an authentication prompt will appear. Choose the deployments | |
| that you want to work with in Microsoft Excel and click **Authorize**. | ||
| Once you see the `Access Granted` message, close the modal window. | ||
|
|
||
| If you want to revoke the authentication, open the add-in menu and click | ||
| The add-in menu shows the current tenant, Cube account, deployment, and signed-in | ||
| user. If you want to revoke the authentication, open the add-in menu and click | ||
| **Sign out**. | ||
|
|
||
| ## Create reports via pivot table | ||
|
|
@@ -88,7 +89,13 @@ Cube Cloud for Excel works only with [views][ref-views], not cubes. | |
| Click on members to add them to **Rows** and **Measures**. | ||
| If needed, drag dimensions from **Rows** to **Columns**. Click on | ||
| the funnel buttons to add members to **Filters**. Click on **×** to | ||
| remove members from a query. | ||
| remove members from a query. Drag members within **Measures** to reorder them | ||
| in the output. | ||
|
|
||
| When a dimension is on **Columns**, the **Measure position** option controls | ||
| how measures nest relative to the column values: **After columns** (default) | ||
| nests measures under each column value, while **Before columns** makes each | ||
| measure span all column values. | ||
|
|
||
| <Frame> | ||
| <img src="https://ucarecdn.com/670fda9d-358a-4345-9242-7888d8aaedd8/" /> | ||
|
Comment on lines
+92
to
101
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Measure position explanation is clear, and mirroring it verbatim in One gap: the |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The behavior is accurate but the trigger is implicit — "if you don't name a workbook" means the destination depends on what the user omits from a prompt, which is hard to discover from a feature bullet. Consider a concrete example prompt pair somewhere in the body of the page (this page already has a "Try prompts like" pattern below), e.g. "Save this to the Revenue workbook" vs. "Save this".
Also worth a follow-up cross-link:
explore.mdxdocuments "Exploring from Analytics Chat" as clicking Explore, and its "Saving explorations" section lists only the manual Save paths — neither mentions that the agent can now produce a saved exploration directly. A reader landing on Explore first won't learn about this.