Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
kkirner
Helper II
Helper II

Cannot understand this measure I inherited

Hi, I inherited this measure from someone who was building reports for our company before I started.  When used as a filter it seems to limit the data returned to revenue items for the current month or the previous month.   Would anyone be kind enough to try to interpret it for me?

MonthOnlyLedger =

VAR monthNum = IF(MONTH(TODAY()) = 1, 12, MONTH(TODAY())-1)
VAR yearNum = YEAR(TODAY()-31)
VAR zeroNum = INT(CONCATENATE(0, monthNum))
Return
OR(CONTAINSSTRING(SPSRevenue[DisbursedToLedger], IF(monthNum > 9, CONCATENATE(RIGHT(yearNum,2), monthNum), CONCATENATE(RIGHT(yearNum,2), CONCATENATE("0", monthNum)))), CONTAINSSTRING(SPSRevenue[DisbursedToLedger], FORMAT(TODAY(), "yymm")))
1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@kkirner 
Yes yoy are right. It restricts the calculation for the last two months.

MonthOnlyLedger =
VAR monthNum =
    IF ( MONTH ( TODAY () ) = 1, 12, MONTH ( TODAY () ) - 1 ) --Retrieves the previous Month Number
VAR yearNum =
    YEAR ( TODAY () - 31 ) -- Retrieves the year of the previous month
VAR zeroNum =
    INT ( CONCATENATE ( 0, monthNum ) ) -- This does absolutely nothing. It just returns monthNum and it is not used further in the code.
RETURN
    OR (
        CONTAINSSTRING (
            SPSRevenue[DisbursedToLedger],
            -- This column has the folrmat "YYMM"
            IF (
                monthNum > 9,
                CONCATENATE ( RIGHT ( yearNum, 2 ), monthNum ),
                CONCATENATE ( RIGHT ( yearNum, 2 ), CONCATENATE ( "0", monthNum ) ) --The IF statement is just to tackle the month forrmat (one or two digits)
            )
        ),
        CONTAINSSTRING ( SPSRevenue[DisbursedToLedger], FORMAT ( TODAY (), "yymm" ) )
    )
-- the above means if in this month or previous month return true else false

Can be simplified as

MonthOnlyLedger =
VAR ThisYearMonth =
    FORMAT ( TODAY (), "YYMM" )
VAR PreviousYearMonth =
    FORMAT ( EOMONTH ( TODAY (), -1 ), "YYMM" )
RETURN
    OR (
        CONTAINSSTRING ( SPSRevenue[DisbursedToLedger], ThisYearMonth ),
        CONTAINSSTRING ( SPSRevenue[DisbursedToLedger], PreviousYearMonth )
    )

View solution in original post

2 REPLIES 2
kkirner
Helper II
Helper II

@tamerj1 Thank you very much.  I really appreciate the explanation of each variable and the simpler revision.

tamerj1
Super User
Super User

@kkirner 
Yes yoy are right. It restricts the calculation for the last two months.

MonthOnlyLedger =
VAR monthNum =
    IF ( MONTH ( TODAY () ) = 1, 12, MONTH ( TODAY () ) - 1 ) --Retrieves the previous Month Number
VAR yearNum =
    YEAR ( TODAY () - 31 ) -- Retrieves the year of the previous month
VAR zeroNum =
    INT ( CONCATENATE ( 0, monthNum ) ) -- This does absolutely nothing. It just returns monthNum and it is not used further in the code.
RETURN
    OR (
        CONTAINSSTRING (
            SPSRevenue[DisbursedToLedger],
            -- This column has the folrmat "YYMM"
            IF (
                monthNum > 9,
                CONCATENATE ( RIGHT ( yearNum, 2 ), monthNum ),
                CONCATENATE ( RIGHT ( yearNum, 2 ), CONCATENATE ( "0", monthNum ) ) --The IF statement is just to tackle the month forrmat (one or two digits)
            )
        ),
        CONTAINSSTRING ( SPSRevenue[DisbursedToLedger], FORMAT ( TODAY (), "yymm" ) )
    )
-- the above means if in this month or previous month return true else false

Can be simplified as

MonthOnlyLedger =
VAR ThisYearMonth =
    FORMAT ( TODAY (), "YYMM" )
VAR PreviousYearMonth =
    FORMAT ( EOMONTH ( TODAY (), -1 ), "YYMM" )
RETURN
    OR (
        CONTAINSSTRING ( SPSRevenue[DisbursedToLedger], ThisYearMonth ),
        CONTAINSSTRING ( SPSRevenue[DisbursedToLedger], PreviousYearMonth )
    )

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.