1
I need to create a measure (MAX) that calculates the smallest among several variables, also what we have in Excel called "SMALLER"...
My attempt is as follows ("Unsuccessful")
M_Teste =
var v1 = 10
var v2 = 8
var v3 = 11
var v4 = 9
return min(v1,v2,v3,v4)
I tried to create a DATATABLE to create a virtual table to use MINX, but I could not!