Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The below set analysis is not working.I want to do the wildmatch for Tech and I see the error mark near the % sign ({'*Tech*'}>}%))
=num(avg({$<Name={'*Tech*'}>}%),'#,##0%')
Thank you very much.
Hi, I crated a sample data with 'Name' and '%' as fields and this expression works:
=num(avg({$<Name={'*ABS*'}>}%),'#,##0%')
So I don't know why it's not working for you... [%] is a field name?
num(avg({$<Name={'*Tech*'}>} FieldName or Expression),'#,##0%')
In place of fieldname/expression, you are putting % . What is this % ?
Hi, I crated a sample data with 'Name' and '%' as fields and this expression works:
=num(avg({$<Name={'*ABS*'}>}%),'#,##0%')
So I don't know why it's not working for you... [%] is a field name?
Thank you.It worked for me .