Forum Discussion
Anonymous
7 years agoNot applicable
How to create a Pivot table on calculated column - Please help me..It is urgent
Hi, I have 2 calulated collumn in my Data model, and I want to create a seperate Pivot table in my data model with those 2 column , but as the calculated column is not visible at 'Edit Queries' wind...
- 7 years ago
Anonymous
7 years agoNot applicable
Hi,
I want to create a seperate table in my data model with 2 calculated columns, but not on the visual chart matrix. So please help me how can I do that with the help of DAX.
For this I have created a DAX like below , but I am getting error on this:
Table2 =
var Delivery = CROSSJOIN(ROW("Type","Time To Delivery"), VALUES(Data[Time_To_Delivery]))
var Sent = CROSSJOIN(ROW("Type","Time To Send"), VALUES(Data[Time_To_Send]))
return UNION(Delivery, Sent)
v-chuncz-msft
Community Support
7 years ago- Anonymous7 years agoNot applicable
How would i use for measures rather than caculated columns?
v-chuncz-msft wrote:Anonymous ,
You may use SELECTCOLUMNS Function (DAX) and UNION Function to add a calculated table.