Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I would like to Add a specification on the price value without create a new column for reduce dataset size.
How can i create mesure for specify if the price is > 50 , i put Yes else No.
I can't use a measure because i don't find the Price column without using agregate.
Thank you
Solved! Go to Solution.
Use conditionmeasure = IF(SUM([PriceColumn]) > 50, "Yes", "No")
SUM can give you cell level values as well 🙂
Proud to be a Super User!
Hi, Sorry i was absent.
I have several lines for specific Clients, i didn't notice that sorry.
Do you have a solution?
Thank's
Use conditionmeasure = IF(SUM([PriceColumn]) > 50, "Yes", "No")
SUM can give you cell level values as well 🙂
Proud to be a Super User!