Forum Discussion
Anonymous
5 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 ...
- 5 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
5 years agoMost Valuable Professional
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"))
Anonymous
5 years agoNot applicable
mwegener , thank you worked straight away! Got to love the PBI community, to get a fix within 3 minutes!!