The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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/