Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
Attached are the visualization that i need and currently i am getting
Hi Raj,
I think since you have used min total, it is only working for the overall min month, whereas you need it to check for min month-year for each month-month. Try something like this once :
Try this
if(
(['Month-Year']) = Min(total(['Month-Year'])) and [Percentage Classified] < '100.0%' and (['Month-Month'] = 'January' or ['Month-Month'] = 'February'),
'Red',
If(
(['Month-Year']) = Min(total(['Month-Year'])) and [Percentage Classified] = '100.0%' and (['Month-Month'] = 'January' or ['Month-Month'] = 'February'),
'Green',
'Blue'
)
)