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.
Solved! Go to Solution.
Hi @Anonymous
Try this measure:
Measure =
Var _R = max(table[day])
return
[E-Bin Cost]+(_R*1500)
or
Measure =
Var _R = max(table[day])
return
[E-Bin Cost]+(_R*[Profit (day)])
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @Anonymous
Try this measure:
Measure =
Var _R = max(table[day])
return
[E-Bin Cost]+(_R*1500)
or
Measure =
Var _R = max(table[day])
return
[E-Bin Cost]+(_R*[Profit (day)])
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @VahidDM
It does not appear to be accepting this DAX code as a new measure. Any thoughts? Or am I inputting this in the wrong place?
@Anonymous
The RETURN missed from my code.
Make sure you copy and past code.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/