-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
issue: under reviewBeing looked into by TE teamBeing looked into by TE team
Description
Description
code before:
CALCULATE(
[ActualProductionTime],
FILTER(
v_FactTimeProductionData,
RELATED( 'v_DimProductionOrder'[ProductionOrder] ) * 1 < 900000000
|| RELATED( v_DimProjectLogistic[ProjectFirstDigit] )
IN { "7", "9" } || ISBLANK( RELATED( 'v_DimProjectLogistic'[Project] ) )
)
)
--> coding hint: rewrite table filter as scalar preciate
after:
CALCULATE(
[ActualProductionTime],
KEEPFILTERS(
RELATED( 'v_DimProductionOrder'[ProductionOrder] ) * 1 < 900000000
|| RELATED( v_DimProjectLogistic[ProjectFirstDigit] )
IN { "7", "9" } || ISBLANK( RELATED( 'v_DimProjectLogistic'[Project] ) )
)
)
error:
Tabular Editor 3 Version
3.22.1
Screenshots
No response
Steps to Reproduce
No response
Expected behavior
No response
Crash Report
No response
Windows Version
No response
Metadata
Metadata
Assignees
Labels
issue: under reviewBeing looked into by TE teamBeing looked into by TE team