Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm starting with set analysis.
I did a formula = Sum ({<[Fiscal Year-Month]={"2012/05"}>}[Commit Demand])/1000
It's working.
I try to replace {"2012/05"} by a field and it's not working.
= Sum ({<[Fiscal Year-Month]=[Current Fiscal Year-Month]>}[Commit Demand])/1000
= Sum ({<[Fiscal Year-Month]={[Current Fiscal Year-Month]}>}[Commit Demand])/1000
Someone can help me?
Thanks.
Eva
= Sum({<[Fiscal Year-Month]= {"$(=Only([Current Fiscal Year-Month]))"} >}[Commit Demand])/1000
Hi Eva,
Try:
= Sum ({<[Fiscal Year-Month]={$(=Only([Current Fiscal Year-Month])}>}[Commit Demand])/1000
Hope this helps,
Jason
Hi Jason,
Thanks for your answer, Unfortunately, It's not working neither :'(
It tried your formula
= Sum ({<[Fiscal Year-Month]={$(=Only([Current Fiscal Year-Month])}>}[Commit Demand])/1000
tihs one :
= Sum ({<[Fiscal Year-Month]={$(=Only([Current Fiscal Year-Month]))}>}[Commit Demand])/1000
and
=Only([Current Fiscal Year-Month]) give the right value.
= Sum({<[Fiscal Year-Month]= {"$(=Only([Current Fiscal Year-Month]))"} >}[Commit Demand])/1000
Isn't that the same as the answer I gave you?
I jsut added from yours
Sum({<[Fiscal Year-Month]= {"$(=Only([Current Fiscal Year-Month]))"} >}[Commit Demand])/1000
Ah.