Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all
I want to link "Month" with "Period" . Month field values are Jan, Feb, Mar….Dec.
If I want to click P1 that should display Oct, P2 - Nov, P3 - Dec… P12 - Sep
LOAD Month;
FROM Total;
Period:
LOAD * INLINE [
Period
P1
P2
P3
P4
P5
P6
P7
P8
P9
P10
P11
P12
;
How can I do this ???...can anyone help.
Thanks
Try this
Period:
LOAD * INLINE [
Period,Month
P1,Oct
P2,Nov
P3,Dec
P4;jan
P5,Feb
P6,Mar
P7,Apr
P8,May
P9,Jun
P10,Jul
P11,Aug
P12,Sep
;
Anders
Try this
Period:
LOAD * INLINE [
Period,Month
P1,Oct
P2,Nov
P3,Dec
P4;jan
P5,Feb
P6,Mar
P7,Apr
P8,May
P9,Jun
P10,Jul
P11,Aug
P12,Sep
;
Anders
Hi,
expand your inline tab
Period, Month
P1, Oct
P2, Nov
P3, Dec
and so on.
Regards
Working fine...Many thanks for all your replies !!