Hey guys,
I’m trying to transform this code into a DAX measure:
if (Column1 in ("Value1","Value2"...."ValueN") then [Revenue] else 0)
I need to calculate the (sum(FactT[revenue]), filter(FactT,FactT[Column1] in (“Value1”,“Value2”…“Value3”))).
Other than IN, can anyone here suggest a function that I can use?
Thanks in advance!