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.
I'm looking for a DAX formula that calculates the sum using two other tables. One table shows how often a certain code occurs. And in a dimension table is the duration of this code. In the example below you can see what my question is exactly:
Solved! Go to Solution.
Hi @brief001
Try this:
Measure =
VAR _Dur =
ADDCOLUMNS(
'Table 2',
"Dur1",
[Amount]
* ( LOOKUPVALUE( 'Table 3'[Duration], 'Table 3'[Code], 'Table 2'[Code] ) )
)
RETURN
SUMX( _Dur, [Dur1] )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @brief001
Try this:
Measure =
VAR _Dur =
ADDCOLUMNS(
'Table 2',
"Dur1",
[Amount]
* ( LOOKUPVALUE( 'Table 3'[Duration], 'Table 3'[Code], 'Table 2'[Code] ) )
)
RETURN
SUMX( _Dur, [Dur1] )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Thank you VahidDM, this formula works exactly as hoped. 😀