Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to create pivot table base on range value, i'll try with file attach, but the result isn't right,
help me please.
Thank you
HI Bam,
Your condition for 31-60 days should read: count({<DueDate={'>=31<=60'}>} ID)
Likewise your 61-90 should follow the same format, and then the expression you have for >91 currently said <30 so you'll need to change that to >91!
Aaron
Create a Pivot Table
Dimension
1) Client
2) Calculated Dimension
=If(DueDate < 90, Dual(Replace(Class(DueDate,30),'<= x <','-'),Class(DueDate,30)), Dual('91 Days',10000))
Expression
Count(DueDate)
Change these:
31-60 Days
count({<DueDate={'>=31'}, DueDate={'<=60'}>} ID)
to
count({<DueDate={">=31<=60"}>} DueDate)
61-90 Days
count({<DueDate={'>=61'}, DueDate={'<=90'}>} DueDate)
to
count({<DueDate={'>=61<=90'}>} DueDate)
>91 Days
count({<DueDate={'<=30'}>} DueDate)
to
count({<DueDate={">90"}>} DueDate)
Dear All,
Thank you for your kindness
Regards
Have you tried my solution?
I try too Mr. Kachhia, but your expression is too great for me :-), because I am newbie in qv, I am still confused to handle your expression and I missed periode between 31 - 60 Days.
Thank you
let me know which part you don't understand in my provided expression.
I will explain in steps...