Forum Discussion

h4tt3n's avatar
h4tt3n
Icon for Helper V rankHelper V
5 years ago
Solved

DAX 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...
  • Anonymous's avatar
    Anonymous
    5 years ago
    Supply temperature = 
        calculate( 
            selectedvalue( 'Data'[value] ),
            'Data'[unittypeinputid] = 1511,
            ALL( 'Data'[datatype] )
        )