Forum Discussion
Anonymous
6 years agoNot applicable
Dynamically change a title based on a value.
I want to be able to dynamically change the title based on the average value within a table. I've tried the following logic Status = if(average(RESULT)> 4,"High Performing",if(average(RESULT)> 3.5 ...
- 6 years ago
Hi Anonymous ,
try this
Status = if(average('Table'[RESULT])> 4,"High Performing",if(AND(average('Table'[RESULT])> 3.5, average('Table'[RESULT])>4), "Satisfactory","Requires Review"))
mwegener
Most Valuable Professional
6 years agoHi Anonymous ,
try this
Status = if(average('Table'[RESULT])> 4,"High Performing",if(AND(average('Table'[RESULT])> 3.5, average('Table'[RESULT])>4), "Satisfactory","Requires Review"))
Anonymous
6 years agoNot applicable
mwegener , thank you worked straight away! Got to love the PBI community, to get a fix within 3 minutes!!