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
aaditya2000
Helper II
Helper II

Calculation

Hello:

 

I need help on the calculation part & how do?

 

I want to display total dollars amount on CARD which is based on A & B.

 

(A) Tabble 1 meassure = Remote Saving

Remote Saving = COUNTROWS(FILTER(Table1,
(Table1[col1] = "N" && Table1[col4] = "N")))

 

This gives for e.g. Remote Saving = 80

 

(B) Table 2 is look up table of 9 dollars values (100,150,200,250,300,350,400,450,500)

      SLICER has values from Table 2

 

Based on value selected in SLICER, CARD should display calculated value accordingly.

 

for e.g. if i select value 100 from SLICER then CARD should display value $8000 (100 * 80)

            if i select value 150 from SLICER then CARD should display value $12000 (150 * 80)

 

I need help how to achive above from SLICER, any help is greatly appreciated.

 

Thank you in advance.

Thanks

 

SLICER.png

 

 

 

 

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @aaditya2000

 

Try this MEASURE for CARD

 

MEASURE =
SELECTEDVALUE ( Table2[Slicer Column] ) * [Remote Saving]

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi @aaditya2000

 

Try this MEASURE for CARD

 

MEASURE =
SELECTEDVALUE ( Table2[Slicer Column] ) * [Remote Saving]

Regards
Zubair

Please try my custom visuals

Thank you Zubair, it worked with minor modification but SELECTEDVALUE was key for resolution.

 

MEASURE = CALCULATE(
 [Remote Saving] * SELECTEDVALUE (Table2[Slicer Column])
)

 

 

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