Forum Discussion
Anonymous
6 years agoNot applicable
IF NOT BLANK Calculate Sum
Hello, I need your help - we have 2x columns "Outage Durations" & "C_Durations" we would like to calculate the Sum of column "C_Durations" 1st if the column/row is not Blank. If somehow "C_Durat...
- 6 years ago
Hi Anonymous,
Regards FrankAT
az38
Community Champion
6 years agoHi Anonymous
if i understand you correct try SUMX()
= CALCULATE(SUMX('Table', IF(ISBLANK([C_Durations]), [Outage Durations], [C_Durations]) ) )