Forum Discussion
Hurshemar
2 years agoRegular Visitor
User Input in DAX Query
Hello, I have a project set up that is pulling in data from an accounting system. Right now I am pulling in data for "2023_Scenario_1" which is hard coded in my DAX query. I want to be able to ...
- 2 years ago
I've taught 10s of thousands of people DAX. I've seen it all. Normally when I see this approach (DAX queries) it comes from someone that has a SQL background. Generally speaking, this is not how you should approach power BI. Instead do the following
- Prepare your data in a star schema
- Load all the data you will need for all reports. You should never have to refresh the report based on different user data needs
- add slicers to the page to apply filters
- forget about writing queries. Instead use the visuals (start with table and matrix) to visually build the output you need. The visual creates the structure/group bys, etc, and measures are replacements for aggregations.
MattAllington
2 years agoCommunity Champion
I've taught 10s of thousands of people DAX. I've seen it all. Normally when I see this approach (DAX queries) it comes from someone that has a SQL background. Generally speaking, this is not how you should approach power BI. Instead do the following
- Prepare your data in a star schema
- Load all the data you will need for all reports. You should never have to refresh the report based on different user data needs
- add slicers to the page to apply filters
- forget about writing queries. Instead use the visuals (start with table and matrix) to visually build the output you need. The visual creates the structure/group bys, etc, and measures are replacements for aggregations.