https://radacad.com/power-bi-licensing-walk-through-guide
Rolling 6 and 12 month?
How to split by delimiter in Direct Query Power BI Reports?
http://dataap.org/blog/2020/05/14/how-to-split-by-delimiter-in-direct-query-power-bi-reports/
DAX Fridays! #128: Conditional formatting with DAX - MAX and MIN values in Power BI
*How can you assign a number (1-4 or 5) to each week of the month In dax?
Week_month = 1 + WEEKNUM ( 'Table'[Date] )-WEEKNUM( STARTOFMONTH ('Table'[Date]))
* Switch function
SWITCH (
TRUE (),
[MinutesRounded] < 1, "< 1 minute",
[MinutesRounded] < 15, "<15 minutes",
"> 15 minutes"
)
*Dashboards vs. reports
When would you want to build a dashboard versus a report? The following list explains the key similarities and differences worth noting when you are determining the right path for you:
Dashboards can be created from multiple datasets or reports.
Dashboards do not have the Filter, Visualization, and Fields panes that are in Power BI Desktop, meaning that you can't add new filters and slicers, and you can't make edits.
Dashboards can only be a single page, whereas reports can be multiple pages.
You can't see the underlying dataset directly in a dashboard, while you can see the dataset in a report under the Data tab in Power BI Desktop.
Both dashboards and reports can be refreshed to show the latest data.
Dashboards allow a user to pin visuals from different reports and datasets onto a single canvas, making it simple to group what's important to the user. Reports, on the other hand, are more focused on being able to visualize and apply transformations to a single dataset. Consider dashboards as the next step that you want to take after building your reports in Power BI Desktop.
Now that you've learned about the background of dashboards and reports, you can learn about dashboards in-depth, specifically about their individual components.
Very Informative
ReplyDelete