Forum Discussion
tuulia
Helper IV
5 years agoTabular Model Last_data_update to Power BI
Hi! How can I display the last refresh-date/time of SSAS tabular model in Power BI-report? This query from model returns the correct result, but how can I make a measure from it: SELECT TOP 1...
- 5 years ago
tuulia , based on what I got. you need add the table and then you can get max using measure like
maxx(all(Table), [LAST_DATA_UPDATE])
- 5 years ago
Hi tuulia ,
The following article tells about how to extract data ,it may be helpful for you!
How to effectively extract data from an OLAP cube by relying upon T-SQL
Best Regards
Lucien
amitchandak
Super User
5 years agotuulia , based on what I got. you need add the table and then you can get max using measure like
maxx(all(Table), [LAST_DATA_UPDATE])
tuulia
Helper IV
5 years agoThank you, I think this is what I need. I just can't find the right solution to write mdx-query result to DW-table..