Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I create a line chart my expression is ::: Avg({[GROUP1]<[Gender]=Female >}UserScore_score) it show the error in expression GROUP1 is Alternate state plz correct me.
Thanks
MAdhu
Josna,
Try this:
avg(distinct{$<Gender={'Female'}>} UserScore_score)
avg({$<Gender={'Female'}>} UserScore_score)
Thanks,
AS
amit,
compulsory use alternate state
Thanks
Madhu
Hi,
Try this expression
Avg({[GROUP1]<[Gender]={'Female'} >}UserScore_score)
Hope this helps you.
Regards,
jagan.
Plz use group1 in place of distinct.
Thanks,
AS
Hi,
Try this:
Avg({[GROUP1]}{<[Gender]={'Female'} >}UserScore_score)
try this..
Avg({[GROUP1]<Gender={'Female'}>}UserScore_score)
Just need below modification (in red) for your expression else it's fine
= Avg({[GROUP1]<[Gender]={'Female'} >}UserScore_score)