Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need a good model to load these 3 sheets in attached excel so I can see the relationship between these 3 tables. I wanna drill down from Description >> Class in Dimension and have Gross, Net and Cost in expression what do I do?
Hi,
Try This...
Class:
LOAD [S/N] as KEY,
[S/N] AS SN_Class,
CLASS,
[Class no],
GROSS,
NET
FROM
(
HostelInfo:
LOAD [S/N] as KEY,
[S/N] AS SN_HostelInfo,
HOSTEL,
Descrition,
[DT number],
Cost
FROM
(
left join (HostelInfo)
LOAD [DT number],
Descrition
FROM
(
-Sathish
This way you help?
S/N cant be our unique identifier. In this case please. There is no [S/N] in the database we just used it to show the numbering
Hi
One quick suggestion, Instead of Left Join we can also use ApplyMap and get the Description based on DT Number
Good Explanation Sathish G
I attached the QV application with Apply Map code and the pivot table on UI with same result what Sathish G provided
Apology if any mistakes.
Thanks
Satish