Forum Discussion
VictorV
Helper I
2 years agoCreate condition measure for column show in Report View
Hi everyone, Currently, on my Report View, I have a table like below. I want to create a measure, that I will use as a filter TRUE/FALSE. The condition will be like: condition 1: If [Code]...
- 2 years ago
i changed true false to 1 and 0
Measure 2 = if(ISBLANK(max('Table'[Code]))&&ISBLANK([Measure])||not(ISBLANK(max('Table'[Code])))&¬(ISBLANK([Measure])),1,0)it works on my end, you can have a try.
ryan_mayu
Super User
2 years agoi think you can do something like below, pls have a try
Measure 2 = if(ISBLANK(max('Table'[Code]))&&ISBLANK([Measure])||not(ISBLANK(max('Table'[Code])))&¬(ISBLANK([Measure])),TRUE(),FALSE())
pls see the attachment below
VictorV
Helper I
2 years agoCan it put it to filter like this a filter only True
- ryan_mayu2 years ago
Super User
i changed true false to 1 and 0
Measure 2 = if(ISBLANK(max('Table'[Code]))&&ISBLANK([Measure])||not(ISBLANK(max('Table'[Code])))&¬(ISBLANK([Measure])),1,0)it works on my end, you can have a try.