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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Khang
Frequent Visitor

Display % in a Matrix visual that has decimal number formatting - within multiple filtered contexts

Hello DAXperts,

 

I have a matrix visual showing my data from a "MainData" table.
I have been able to display % numbers for selected rows while the rest of the matrix is decimal formatted. But this only works within certain filtered contexts based on the selected slicers.

 

Ultimately, I have a Profit & Loss report, I want this report to show the correct calculated % values for the "Gross Profit %" row.

Currently, the data does contain the correct decimal values for the % equivalent number for "Gross Profit %". But the numbers are correct when only a single Business Unit is selected on the slicer.

 

Ideally, the GP% can be calculated by use of a measure or something similar (but I have not gone this route):

    GP% = DIVIDE( CALCULATE( [PL], 'MainData'[L1] = "Gross Profit", CALCULATE( [PL], 'MainData'[L1] = "Revenue" ) )


The measure I really need help with is [ActualsPL w %] or [ComparisonPL w %].

See below image and attached PBIX file.
Any suggestions or workarounds is much appreciated!

Capture.PNG

 

 

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Khang ,

 

Please modify the measure [ShowPL].

 

 

ShowPL = 
IF( SELECTEDVALUE(Tbl_Glb_Show[Show]) = "YTD", 

    IF( SELECTEDVALUE( MainData[L1] ) = "Gross Profit %",
        CALCULATE( [PL YTD], MainData[L1] = "Gross Profit" && MainData[Figures] = "Actuals") / CALCULATE( [PL YTD], MainData[L1] = "Revenue" && MainData[Figures] = "Actuals"),
        CALCULATE( [PL YTD], MainData[Figures] = "Actuals")),

    IF( SELECTEDVALUE( MainData[L1] ) = "Gross Profit %",
        CALCULATE( [PL], MainData[L1] = "Gross Profit" && MainData[Figures] = "Actuals", ALLSELECTED(MainData)) / CALCULATE( [PL], MainData[L1] = "Revenue" && MainData[Figures] = "Actuals", ALLSELECTED(MainData)),
        CALCULATE( [PL], MainData[Figures] = "Actuals"))
        )

 

vkkfmsft_0-1652677454270.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

Hi @Khang ,

 

Please modify the measure [ShowPL].

 

 

ShowPL = 
IF( SELECTEDVALUE(Tbl_Glb_Show[Show]) = "YTD", 

    IF( SELECTEDVALUE( MainData[L1] ) = "Gross Profit %",
        CALCULATE( [PL YTD], MainData[L1] = "Gross Profit" && MainData[Figures] = "Actuals") / CALCULATE( [PL YTD], MainData[L1] = "Revenue" && MainData[Figures] = "Actuals"),
        CALCULATE( [PL YTD], MainData[Figures] = "Actuals")),

    IF( SELECTEDVALUE( MainData[L1] ) = "Gross Profit %",
        CALCULATE( [PL], MainData[L1] = "Gross Profit" && MainData[Figures] = "Actuals", ALLSELECTED(MainData)) / CALCULATE( [PL], MainData[L1] = "Revenue" && MainData[Figures] = "Actuals", ALLSELECTED(MainData)),
        CALCULATE( [PL], MainData[Figures] = "Actuals"))
        )

 

vkkfmsft_0-1652677454270.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Winniz,
This worked perfectly.
Thanks so much!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors