Skip to content
Home » Power BI Tutorial » Page 5

Power BI Tutorial

Power BI Tutorial Power Bi Reports, Power BI is a business analytics service by Microsoft. It provides interactive visualizations and business intelligence capabilities with an interface simple enough for end users to create their own reports and dashboards.

Report ToolTip page in Power BI

Power Bi allows us to create a report tooltip pages, means you can access a report page inside tooltip.

So for any selected records on visuals you can display more information by displaying a report page as a tooltip.

Loading

SUMX Function DAX

SUMX() is a power bi DAX  Math function that returns the sum of an expression evaluated for each row in a table. It returns a decimal number. 

It goes through a table, row by row to complete the evaluation after filter is applied.

Only the numbers in the column are counted. Blanks, logical values, and text are ignored.

It can be used to evaluate expression over multiple columns as it has the ability to work row by row.

Loading