March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I need to create a measure that would repeat the grand total of the Total YTD column as the Total Amount. Currently the measure I created is throwing up the ITM grand total as the Total Amount which is not meeting up to the requirement.
For clarity, what I need is that once I select the Disconnected date filter, the corresponding Grand Total for "TotalYTD" should appear across the "TotalAmount" Column. e.g
Based on the current selection, the value that is expected to appear across the second column is 1400 which is the grand total of "TotalYTD".
I have attached the link to the pbix file as well as a screenshot for your reference.
Any help is appreciated,
Solved! Go to Solution.
@Ajibao03 - DAX is below file is attached.
IF( ISFILTERED( 'Disconnected Table' ), CALCULATE( [TotalYTD], ALL( SalesTab[Category] )))
If this works for you please accept as the solution, it helps others with the same challenge.
@Ajibao03 - DAX is below file is attached.
IF( ISFILTERED( 'Disconnected Table' ), CALCULATE( [TotalYTD], ALL( SalesTab[Category] )))
If this works for you please accept as the solution, it helps others with the same challenge.
Thanks . It worked
User | Count |
---|---|
117 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |