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 all,
I'm looking at someone else's project/dax right now and want to clarify this here:
Your measure does exactly what this measure does:
[Hours Saved] =
calculate(
sum( queuesROI[timeValueMin] ) / 60,
crossfilter(
// KeyTo_queuesROI and Key are fields
// on which the tables join to each
// other.
QueueDB[KeyTo_queuesROI],
queuesROI[Key],
BOTH
)
)
Hi,
I do not know how your data model looks like, but the concept of the measure that you showed is showing the calculation of the below. I might simplified too much but please share your sample pbix file, then I can try to look into it to come up with more relevant explanation.