Forum Discussion
nkpenta
3 years agoMicrosoft Employee
dynamic constant line for blank value
HI, Dynamic constant line is showing at 0 when the measure value is blank. how can we not show the constant line when the measure value is blank?
- 3 years ago
Added if condition on the measure as below to fix the issue. it works now.
if(measure<>blank(),measure,"Text")
nkpenta
3 years agoMicrosoft Employee
Added if condition on the measure as below to fix the issue. it works now.
if(measure<>blank(),measure,"Text")