Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All ,
Please help me on the below,
Month | Category | field |
Aug-17 | A | H |
Sep2017 | B | I |
Nov-17 | C | G |
Dec2017 | D | K |
Jan-18 | E | L |
Fe b2018 | F | M |
Mar-18 | G | N |
it is my final data.
I want to show the latest 5 month data.
Please find the above image for loading file
i used in script,
LOAD Category,
val,
Month,
field1
Resident GYR
Where GYR_Month >= MonthStart(Today(), 5);
but getting same month only
Are you dropping GYR?
yes, i will drop the GYR table.
Would you be able to share the app?
sorry, i couldn't able to share the data,
I have attacted in the below image,
I need to show the highligted 5 month data in chart table.
This worked for me...
GYR:
LOAD Date(Date#(Month, 'MMM-YY'), 'MMM-YY') as Month,
Category,
field;
LOAD * INLINE [
Month, Category, field
Aug-17, A, H
Sep-17, B, I
Oct-17, C, J
Nov-17, D, K
Dec-17, E, L
Jan-18, F, M
Mar-18, G, N
];
Final_GYR:
LOAD Category,
Month,
MonthName(Month) as GYR_Month1,
field
Resident GYR
Where Month >= MonthStart(Today(), -5);
DROP Table GYR;