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

Lookup a value and assign a calculation in a measure

Hi

I am looking for a help with a measure such that I want to lookup a value from a list of values and assign a simple calculation.

For example,

 

if category = apple then (TotalAmount - 600)/600

else if category = pear then (TotalAmount - 1000)/ 1000

and so on.

 

i am unable to achieve this on a Measure and your help will be appreciated. 

1 ACCEPTED SOLUTION
AllisonKennedy
Super User
Super User

This looks like a SWITCH function, but can you please provide sample data tables of raw input data and then desired output. You can use the SELECTEDVALUE(Table[Category]) to grab the category value;
SWITCH(SELECTEDVALUE(Table[Category])
, "Apple", DIVIDE( [Total Amount] - 600, 600)
, "Pear" , DIVIDE ( [Total Amount] - 1000, 1000)
)


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

3 REPLIES 3
AllisonKennedy
Super User
Super User

This looks like a SWITCH function, but can you please provide sample data tables of raw input data and then desired output. You can use the SELECTEDVALUE(Table[Category]) to grab the category value;
SWITCH(SELECTEDVALUE(Table[Category])
, "Apple", DIVIDE( [Total Amount] - 600, 600)
, "Pear" , DIVIDE ( [Total Amount] - 1000, 1000)
)


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Allison,

Thank you so much ! Its the perfect solution.

Glad it worked! 🙂 You are very welcome.

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

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.