Is there a way to have Excel's CUBESET function take multiple Sort By arguments?
I'm trying to have a CUBESET function that returns ranked products by sales for a particular timeframe. I can get the sortby argument to accept [Measures].[Product Sales] and a single date utilizing Concatenate, however it would be preferable to have [Measures].[Product Sales] and a date range. I currently have the date range in a different cell as another CUBESET. Anyone know how I can do this?
Assistance would be greatly appreciated.
See also questions close to this topic
- Sum data with same x values in excel bar plot
-
Restructure Excel table with VBA
I have an Excel table source (extract is below):
Models are changing (adding new names, removing), so does change Week number in Columns (from Now till end of the year)
I need to restructure it so that it could look like this:
So that it could be normally used for further querying. In each row there must be model name, for each model there should be Week number and corresponding matching Quantity taken from the table itself (on the intersection of Model X Week from original table). I was smashing my head against the wall on how it can be realized in VBA. Couldn't restructure it with simple code.
-
Excel connector with ODATA filter work not as expected
Sorry, I see there are some posts with ODATA filter but i found nothing here about logical Apps excel connector with an ODATA filter problem.
I have such a simple table for-Mail Adresses and in in the Logic App. I used a Excel(Business) - Connector with List rows present in a table. For reducing the amount of repsonse data, i tried to use a ODATA filter.
(endswith(Email,'@xx.de'))
and
(Email ne '')
but it didnt worked. Only after the first gap (empty cell) search will continue, further gaps will end the search. Because there are only singel filter supported I don't know a solution for that. Can anyone help me?
Expected Response real Response 444444444444@xx.de 444444444444@xx.de 444444444444@000.com 444444444444@000.com 122gfgf@xx.de 12256565656gfgf@xx.de 33334444444@000.com 123gfgf@xx.de 0000gfgf@xx.de Expected Response real Response 122gfgf@xx.de the above 2 tables should be 1 table, but markdown shows me an error if I added the last row as extra table.
Here is my table:
E-Mail 222222222222@xx.de 333333333333@xx.de 5444444444444@xx.de 444444444444@xx.de 444444444444@000.com 122gfgf@xx.de 12256565656gfgf@xx.de 33334444444@000.com 123gfgf@xx.de 0000gfgf@xx.de 124gfgf@xx.de -
Display components within a provider in MDX documentation
I'm working on a storybook and one thing we expose is a preconfigured component to customise rendering of MDX files. Basically, a preconfigured version of the example in the last section of this documentation.
While this following does not work, I think it will help illustrate what I'm trying to achieve:
import {Meta, Story} from '@storybook/addon-docs/blocks'; import {getOverviewStoryTitle} from '../utils' import {MDXProvider} from "./mdx"; <Meta title={getOverviewStoryTitle('MDX')} /> # MDX Everything after the next line is styled with our `<MDXProvider />` so you can get an idea of how your MDX will render. *** <MDXProvider> Paragraphs look like this # Heading H1 ## Heading H2 ### Heading H3 #### Heading H4 ##### Heading H5 ###### Heading H6 > Blockquotes look like this - An - Unordered - List 1. An 1. Ordered 1. List | Tables | With | Markdown | |-|-|-| | Are | Not | Fun | | Are | Not | Fun | | Are | Not | Fun | </MDXProvider>
Where everything within the
<MDXProvider>
would be rendered with my custom components, not Storybook's default components from MDX.Is this at all possible? I think I could get it working with a regular story, but having control of props makes no sense plus, I'd like to keep the ability to write Markdown to properly document usage of this component (there are some gotchas I want to document).
-
How can I display a frontmatter array with Next.js and Mdx?
I'm working on a project in Next.js where I have to display a bullet list from an array in frontmatter.
I managed to display the list, but the bullets are empty. How can I fix this?
This is my code:
Template.js:
{frontMatter.arrays.map(({ array }) => ( <li>{array}</li> ))}
page.mdx:
arrays: - Content 1 - Content 2
Result:
Thanks for your answers!
-
How can I use the "WHERE" clause in MDX or its equivalent?
im' working with analysis services. I need to perform a calculation and for this i use kpi. In the field "value expression" from KPI i establishid the calculation with an expression MDX. Works fine but i don't know how put the clause "WHERE" in the query o how use it
(([Measures].[Recuento Factonlymatriculacion],[Dimmatriculacion].[Nivel].&[Universitario])*100)/([Measures].[Recuento Factsolicitud],[Dimplan].[Nivel].&[Universitario])) WHERE ([Measures].[Recuento Factsolicitud],[Dimaniosolicitud].[Anio]) IS ([Measures].[Recuento Factmatriculacion],[Dimmatriculacion].[Anio])