Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I was wondering what's wrong with my expression?
sum(if([Tariff range]='No tariff',({<[Application Status]={'C/F','U/F'}>} [FTE dashboard])))
There is an error and I am pretty sure it's something to do with the [Application Status]....'U/F bit,, as it is work fine without this part i.e. sum(if([Tariff range]='No tariff',[Stprog Count FTE])).
Any ideas?
Thanks
Ewa
Try
sum({<[Application Status]={'C/F','U/F'}>} if([Tariff range]='No tariff',[FTE dashboard]))
or
sum({<[Application Status]={'C/F','U/F'}, [Tariff range] = {'No tariff'}>}[FTE dashboard])
Hi Ewa, try:
if([Tariff range]='No tariff', sum({<[Application Status]={'C/F','U/F'}>} [FTE dashboard]))
Try
sum({<[Application Status]={'C/F','U/F'}>} if([Tariff range]='No tariff',[FTE dashboard]))
or
sum({<[Application Status]={'C/F','U/F'}, [Tariff range] = {'No tariff'}>}[FTE dashboard])
Hi Ewa,
sum({<[Application Status]={'C/F','U/F'}, [Tariff range]={'No tariff'}>} [FTE dashboard])
Aurélien
Hello Ewa.
Please try with this expression:
if([Tariff range]='No tariff',sum({<[Application Status]={'C/F','U/F'}>} [FTE dashboard]))
Thanks Andres, unfortunately this suggestion did not work for me.
Swuehl
Thanks very much, the first suggestion solved the problem, brilliant!
If your question is now answered, please flag the Correct Answer.
If not, please make clear with which part of this topic you still like to get help .