Forum Discussion
Anonymous
7 years agoNot applicable
Using Parameter and measure combination in custom column
Hello! I have recently been struggling to using a paramter in caluclations in DAX. Currently I have been attempting to use a parameter for a user to input the years of interest. After determinin...
- 7 years ago
Hi Anonymous
You may use below measure2 to get dynamic parameters.For example:
Measure 2 = IF(MAX(Table1[Years])=[measure],1,0)
Regards,
v-cherch-msft
Microsoft Employee
7 years agoHi Anonymous
You may use below measure2 to get dynamic parameters.For example:
Measure 2 = IF(MAX(Table1[Years])=[measure],1,0)
Regards,
- Anonymous7 years agoNot applicable
That worked perfectly thanks so much!!
Austin I