Forum Discussion
Anonymous
3 years agoNot applicable
DAX HELP
Hello World, I want to create some logical functions in Dax. I have my dataset from 2016-2022. I have a column Prior Payment Mode and After Payment Mode. Here Prior Payment Mode and...
FreemanZ
Super User
3 years agohi Anonymous
no sure about your exact expecation, if we simplify your data, you may create a new table with this:
Table =
FILTER(
TableName,
TableName[After] in {"SpecialReversal", "Problem"}
)
I tried and It worked like this:
the simplified dataset,