Forum Discussion
new query from table
How can I create a new query based on a generated table (based on other tables I had imported from Excel files).
Would LOOKUPVALUE be the best function for this scenario?
Thanks again
**** SOLUTION UPDATE ****
It was not able to create New Query based on the generated New Table. So managed to solve with this function:
ColumNew = LOOKUPVALUE(tbl_Averages_as_tabular[Usage Forecasted],tbl_Averages_as_tabular[Works Type],tbl_Future_Allocations_Plannned[Works Type],tbl_Averages_as_tabular[Item],tbl_Future_Allocations_Plannned[Item])
This would be more efficient as a calculated column and I have attached a PBIX file to demonstrate
New Column = MINX( FILTER( 'tbl_Averages_as_tabular', 'tbl_Averages_as_tabular'[Item] = EARLIER('tbl_Future_Allocations_Plannned'[Item]) && 'tbl_Averages_as_tabular'[Works Type] = "Btoc" ), [Usage Forecasted])
12 Replies
- Phil_SeamarkMicrosoft Employee
The table you highlight could be a table generated in Power BI Desktop as a calculated table.
- henrique0galliHelper I
Hi Phil_Seamark, correct.
However, if I need to create queries using this generated table, would that be possible?
This generated table was done as: New Table = GENERATE('Table01','Table02')
- Phil_SeamarkMicrosoft Employee
Do you mean new queries to your source system? Do you want to somehow use the rows in this table to generate a loop of queries? Or something else?