Forum Discussion
h4tt3n
Helper V
5 years agoDAX query without specific filter?
Hello, I have a data table containing among other a timestamp, a numerical data value, and a data type: The data is displayed in a report: In the "Calibration" drop down...
- Anonymous5 years ago
Supply temperature = calculate( selectedvalue( 'Data'[value] ), 'Data'[unittypeinputid] = 1511, ALL( 'Data'[datatype] ) )
Anonymous
5 years agoNot applicable
Supply temperature =
calculate(
selectedvalue( 'Data'[value] ),
'Data'[unittypeinputid] = 1511,
ALL( 'Data'[datatype] )
)Anonymous
5 years agoNot applicable
or:
Supply temperature =
calculate(
selectedvalue( 'Data'[value] ),
'Data'[datatype] = "temperature"
)