Add Measures to Power BI Desktop Model

  •  There are two types of measures one is Implicit and another is explicit
  • 1. Implicit Measures
  • Implicit measures are automatic behaviors that allow visuals to summarize model column data. The following sections focus on how you can use implicit measures.
  • In the Fields pane, a column that's shown with the sigma symbol ( ∑ ) indicates two facts:

  • It's a numeric column.

  • It will summarize column values when it is used in a visual (when added to a field well that supports summarization).

  • Implicit measures allow the report author to start with a default summarization technique and lets them modify it to suit their visual requirements.

    Numeric columns support the greatest range of aggregation functions:
    • Sum

    • Average

    • Minimum

    • Maximum

    • Count (Distinct)

    • Count

    • Standard deviation

    • Variance

    • Median

    Summarize non-numeric columns

Non-numeric columns can be summarized. However, the sigma symbol does not show next to non-numeric columns in the Fields pane because they don't summarize by default.

Text columns allow the following aggregations:

First (alphabetically)
Last (alphabetically)
Count (Distinct)
Count
 
Date columns allow the following aggregations:
Earliest
Latest
Count (Distinct)
Count 
Boolean columns allow the following aggregations: 
Count (Distinct)
Count

 

2. Explicit Measure :

Explicit measures, also known simply as measures, are calculations that you can add to your model.

Conclusion 

Understood what is implicit and Explicit measures.

Comments

Popular posts from this blog

Use DAX iterator functions in Power BI Desktop models

Different charts in Power BI

Modify DAX filter context in Power BI Desktop models