Yeriel
August 7, 2020, 6:45am
1
Hi guys!
I´m trying to unpivot a table created in the data model (not from the query) and created some additional measures to merge it with the Income Statement Data.
The result needs to have 3 columns like the following example:
Category
Date
Values
COS - Beginning Inventory
9/1/2019
€ -
COS - Ending Inventory
9/30/2019
€ 367
COS - Beginning Inventory
10/1/2019
€ 367
COS - Ending Inventory
10/30/2019
€ 828
COS - Beginning Inventory
11/1/2019
€ 828
COS - Ending Inventory
11/30/2019
€ 203
COS - Beginning Inventory
12/1/2019
€ 203
COS - Ending Inventory
12/31/2019
€ 973
COS - Beginning Inventory
1/1/2020
€ 973
COS - Ending Inventory
1/31/2020
€ 429
COS - Beginning Inventory
2/1/2020
€ 429
COS - Ending Inventory
2/29/2020
€ 2,926
The final goal is to merge the Inventory Data into the Income Statement and have one standardized data table.
I appreciate the support!!
I attached the PBIX File for reference.
Cheers!
Example Data.pbix (345.4 KB)
HI @Yeriel
Try Something like this.
Create a table and use this dax expression.
Unpivot_Inventory =
VAR A =
SELECTCOLUMNS (
‘Inventory Data’,
“Category”, “COS-Begining”,
“Date”, ‘Inventory Data’[First Date],
“Values”, ‘Inventory Data’[Beginning Inventory €]
)
VAR B =
SELECTCOLUMNS (
‘Inventory Data’,
“Category”, “COS-Ending”,
“Date”, ‘Inventory Data’[Last Date],
“Values”, ‘Inventory Data’[Ending Inventory €]
)
RETURN
UNION ( A, B )
Hope this helps.
Regards,
Hemant
1 Like
Yeriel
August 7, 2020, 9:01am
3
Hi @Hemantsingh !
Yes, that works perfectly!!
I was using SUMMARIZE but I got a couple of errors.
Thanks for the help!
Have a great day!!
Cheers!
Yeriel
August 8, 2020, 1:19pm
5
Hi @Hemantsingh
By any chance, you know how to fix the circular dependency ?
When I try to create a relationship from the Dates Tables to the Income Statement Dates Columns, I get this error.
I thought I had everything ready to finally be able to create the Income Statement
but I got this error.
I attached the PBIX file for reference.
Example Data.pbix (319.4 KB)
Hope you can help me
HI @Yeriel
Are you able to resolve the circular dependency error?? Just Checked your message today. Was unable to connect due to weekend.
Regards,
Hemant
Yeriel
August 10, 2020, 1:10pm
7
Hi @Hemantsingh
Yes at the end, the best way was to create a better model.
I’m starting from scratch to avoid any circular dependencies in the future.
Thanks for checking on me man.
I’ll keep you posted with the new data model .
Have a great day!
Yeriel
1 Like
Nice to hear that…Always happy to help…cheers
regards