March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
Is there a way to pass variables inside DATATABLE() ? Documentation says it's not but I still would like to see if someone came up with hack to do that.
here is the example. I would like to pass varaibles One, Two, Three as a second value in a row constructor inside DATATABLE( )
DEFINE VAR Three = 3 VAR Two = 2 VAR One = 1 VAR cars = DATATABLE( "Maker", STRING, "Sales", INTEGER, { { "Ford", 3 }, // I would like to pass variables from above { "Ford", Three } { "Jaguar", 2}, { "Jaguar", 1 } }) EVALUATE FILTER( cars, [Sales] >= 2 )
Thanks
Solved! Go to Solution.
@Anonymous
An alternative could be
Table = VAR Three = 3 VAR Two = 2 VAR One = 1 VAR cars = { ("Ford", Three), ("Jaguar", 2),("Jaguar", 1 )} RETURN FILTER(cars,[Value2] >= 2)
@Anonymous
An alternative could be
Table = VAR Three = 3 VAR Two = 2 VAR One = 1 VAR cars = { ("Ford", Three), ("Jaguar", 2),("Jaguar", 1 )} RETURN FILTER(cars,[Value2] >= 2)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |