I want to create a table and create a new column based on columns based on multiple statements
Which looks like this
NewColumn = if( (colA>colB and colC=0)
or (colD >colE and colF = 20)
or colG = "blue",
"True", "False")
Is there any possible way to code this DAX?