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 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
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!