Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Berl21
Helper III
Helper III

Adapt a measure to show only the last value despite context

Hi,

I have written this measure to get only the last date and its revenue in a table:

Total Revenue by Max Date =

IF(
    ISINSCOPE('Ohne Vouchers+ Nur Vouchers'[Last_Modified]),
    VAR __MAXDATE = CALCULATE( MAX('Ohne Vouchers+ Nur Vouchers'[Last_Modified]) , ALLSELECTED('Ohne Vouchers+ Nur Vouchers'[Last_Modified]))
    RETURN
    IF(  MAX('Ohne Vouchers+ Nur Vouchers'[Last_Modified])  = __MAXDATE , [Total Turnover] ),
    [Total Turnover]
)

It works well as a stand alone, but now I need to show only the last date per stage.

For example:
-- here the table shows the correct result:
Berl21_1-1678877359535.png

 

-- here the table shows the correct grand total, but should show 0 or a blank for all 3 first columns:

Berl21_0-1678877343901.png

 

In other words what I need is to rewrite the formula above with something else than ALLSELECTED, and then add a blank statement. I have tried but it shows zero values afterwards 😕 

What is the correct function to use here instead of ALLSELECTED?

Thanks!
1 REPLY 1
lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors