Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
How to modify the below expression with out using month_n ?
money(
Sum (if(Month_n=1, $(ColumnDim51)/$(Columndim89))/1000)
, $(vMoneyFormatK))
my next post i will attach my QV Doc
Paul
Hi balraj
You are right , I don't want use month_n field to achieve same result.
Paul
Sent from my iPhone
Hi Balraj
I have attach my actual QV doc in above post.
Paul
Sent from my iPhone
Please select the Year =15 & use below expression
money(
(Sum ({<YearMonth={"$(=date(max(YearMonth),'YY MMM'))"}>} $(ColumnDim51))/sum({<YearMonth={"$(=date(max(YearMonth),'YY MMM'))"}>}$(Columndim89)))/1000
, $(vMoneyFormatK))
Hi Kush
You got it right , Thank you very much.
money(
Sum(if(Year_n='1',$(ColumnDim51)/$(Columndim89)))/1000
, $(vMoneyFormatK))
Can you help me convert above expression with out using Year_n
Paul
I think
money(
(Sum({<year={"$(=year(today()))"}>}$(ColumnDim51))/sum({<year={"$(=year(today()))"}>}$(Columndim89)))/1000
, $(vMoneyFormatK))
HI Sir
thank you , it work fine now
paul