Hello All,
I have 3 simple tables (2 Dim tables and 1 fact table) that look like below
And the relationships among the 3 tables look like this
I also created a measure which is calculated like this
I am trying to create a new datatable via DAX that has informaiton for jurisdiction, year and the measure, kinda look like this
I am able to create this in the dashboard with visualizaitons, but when I try to create this with dax, I got the error message below. Could you help me explain why this is happening and how can I achieve what I intended with DAX?
Thank you all so very much.
Solved! Go to Solution.
Try
New Table = SUMMARIZECOLUMNS( 'Dim Jurisdiction'[Jurisdiction], 'DimYear'[Tax Year], "Measure %", [Measure %])
Try
New Table = SUMMARIZECOLUMNS( 'Dim Jurisdiction'[Jurisdiction], 'DimYear'[Tax Year], "Measure %", [Measure %])
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
193 | |
68 | |
60 | |
58 | |
56 |
User | Count |
---|---|
184 | |
159 | |
88 | |
73 | |
70 |