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.
This probably isn't too complicated but I'm not sure how to do this. Here are the relevant measures/columns/tables:
Example Table1:
DealNumber | Owner | DaysOpen |
123 | Mark | 35 |
124 | John | 40 |
125 | Mark | 50 |
126 | John | 125 |
Measures (already created):
Example Table2:
DealNumber | Owner | DaysOpen | Status |
123 | Mark | 35 | Good |
124 | John | 40 | Good |
125 | Mark | 50 | Good |
126 | John | 125 | TooLong |
The general logic is probably something like IF(DaysOpen < AbsoluteAVGD2C, "Good", "TooLong"), but I can't figure out how to make sure the AbsoluteAVGD2C measure in this foruma is specific to the owner.
Solved! Go to Solution.
Hi @markyochoa ,
Assuming you have already created the measure to calculate average, please try this :
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Hi @markyochoa ,
Has your problem been solved by @rohit_singh 's solution? If so, would you mind accept his reply as solution?
If not, please feel free to let me your needs.
Best Regards,
Community Support Team _ kalyj
Hi @markyochoa ,
Assuming you have already created the measure to calculate average, please try this :
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Thanks! Sorry for the very late reply.