Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want below to work.
=SUM({< [FinanceRelease] = {$(=(CalendarDate))} >} [Capex Item Gross Value])
where selected CalenderDate is 31-07-2014 (All the date formats are same i.e. DD-MM-YYYY) then also this is not working
where as
when i write
=SUM({< [FinanceRelease] = {'31-07-2014'} >} [Capex Item Gross Value])
it works perfectly ok.
HI Rahul, try like this
=Sum({<[FinanceRelease]={'$(CalendarDate)'}>}[Capex Item Gross Value])
OR
=Sum({<[FinanceRelease]={"$(CalendarDate)"}>}[Capex Item Gross Value])
It should work.
Regards,
Manideep
Try like this
SUM({< [FinanceRelease] = {'$(=CalendarDate)'} >} [Capex Item Gross Value])
HI Rahul, try like this
=Sum({<[FinanceRelease]={'$(CalendarDate)'}>}[Capex Item Gross Value])
OR
=Sum({<[FinanceRelease]={"$(CalendarDate)"}>}[Capex Item Gross Value])
It should work.
Regards,
Manideep
Nope its not working Avinash
Hi,
Kindly check the following steps,
1: check that what it returns when you type in $(=(CalendarDate)) in text Object
2: use similar expression which you are trying in expression variable in your set analysis
3: Also check that after your expression execution your variable is still giving you out put in date format or number format.
Regards
=Sum({<[FinanceRelease]={"$(CalendarDate)"}>}[Capex Item Gross Value])
This is working i.e. WHEN I USED Double Quote , it worked perfectly ok. But now the problem is other
i want to you <= i.e. date < or = ,
=Sum({<[FinanceRelease]={"$(<= CalendarDate)"}>}[Capex Item Gross Value])
is not working.
Like this:
=Sum({<[FinanceRelease]={<="$(CalendarDate)"}>}[Capex Item Gross Value])
Regards,
Manideep
Nope, I already tried that,
=Sum({<[FinanceRelease]={"$(= max(CalendarDate))"}>}[Capex Item Gross Value])
this works but when i put < it dos't work enven if i write as per your above statement, it do not work. It give syntax error (Red line)
Hi Rahul
Try this: (Include <= symbol in double quotes before $ symbol)
=Sum({<[FinanceRelease]={"<=$(CalendarDate)"}>}[Capex Item Gross Value])
This will work for sure.
Regards,
Manideep
no.. its not working