OPENINGBALANCEQUARTER DAX Function in Power BI

The OPENINGBALANCEQUARTER DAX function evaluates the expression at the first date of the quarter, in the current context.

DAX Syntax OPENINGBALANCEQUARTER(expression, dates[, filter])

The function has the following parameters:

Example: Create a measure with name “OPENINGBALANCEQUARTER Measure”.

DAX

OPENINGBALANCEQUARTER Measure = OPENINGBALANCEQUARTER(SUM('Students List'[10th Marks]),'Students List'[Dates])

The output of the above dax code is shown below:

OPENINGBALANCEQUARTER dax function in Power BI