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
adityavighne
Continued Contributor
Continued Contributor

How to create measure with fixed values

Hi All,

 

I have fixed cost for

Item A = 1000

Item B = 5000

 

and table with data

TypeNameCost
Item C

ABC

100
Item CEFG5000
Item Dtyu2356
Item CPOL5547
Item EGGF6328
Item ELAT9514

 

I need output as measure 

Total Cost = Item A + Item B + Item C+ Item D + Item E

TypeCost
Item A1000
Item B5000
Item C10674
Item D2356
Item E15842
4 REPLIES 4
adityavighne
Continued Contributor
Continued Contributor

No this won't work it adds value to all types and repetation of cost

 

PijushRoy
Super User
Super User

Hi @adityavighne 

Please use the DAX in measure

 

 

Cost = 
VAR _A = 1000
VAR _B = 5000
RETURN
_A + _B + Calculate(SUM('YourTable'[Cost]),'YourTable'[Type] IN {"Item C","Item D","Item E"})

 

 

 


Let me know if that works for you


If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.

Thanks
Pijush
Linkedin

thanks

 

@adityavighne 

Is it working now?
If not working, can you please share screenshot what value the the measure returning and what is expected


 


Let me know if that works for you


If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.

Thanks
Pijush
Linkedin

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.