The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!