Forum Discussion
How to create tables from multiple parameters?
- 8 years ago
Hi al3xw3il
The answer I was suggesting was a DAX based solution, so you would do it in Power BI Desktop (not the query editor),
Just click the highlighted "New Table" button on the modelling tab and paste in that code.
Hi al3xw3il
Please try the following as a new calculated table :
New Table = CROSSJOIN(
SELECTCOLUMNS(GENERATESERIES(0,200, 1),"Grind",[Value]) ,
SELECTCOLUMNS(GENERATESERIES(0,360,10),"Angle",[Value])
)Hi Phil,
Thanks for your reply.
But do you mean this? Apologies, I am not very good with Power BI...
let
New Table = CROSSJOIN(
SELECTCOLUMNS(GENERATESERIES(0,200, 1),"Grind",[Value]) ,
SELECTCOLUMNS(GENERATESERIES(0,360,10),"Angle",[Value])
)
in
New Table
- Phil_Seamark8 years agoMicrosoft Employee
Hi al3xw3il
The answer I was suggesting was a DAX based solution, so you would do it in Power BI Desktop (not the query editor),
Just click the highlighted "New Table" button on the modelling tab and paste in that code.
- al3xw3il8 years agoFrequent Visitor
Thank you very much for your help Phil!
It works wonder!