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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sofinobi
Helper IV
Helper IV

if curent month is blank, return last month value

hello all,

please, i have a measure to calculate the average quantity in stock by month, the problem is when there is no transaction for a product in a month (on sales_tab) it doesn't give me any value, i want to give me the latest value 
here is my measure:

AVG Stock Qte Month = var _avgQte= AVERAGEX(Sales_Tab,Sales_Tab[OldLogicalQuantity])
                   return
                   if(isblank(_avgQte),
                       CALCULATE(
                           AverageX(Values('Date'[Month Year]), _avgQte),filter(all('Date'),'Date'[date] <=max('Date'[date]))), _avgQte)
averageifblanck.pbix 

in this image an exemple for the result needed
Capture6.PNG
thank you all
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

CNENFRNL_0-1675039770885.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @Sofinobi 
If the added values shall be counted in the total, you may try this as per attached sample file.

1.png

Average Filldown = 
AVERAGEX (
    VALUES ( 'Date'[YearMonth Number] ),
    VAR CurrentMonth = 'Date'[YearMonth Number]
    VAR LastDateWithData = 
        MAXX ( 
            FILTER ( 
                CALCULATETABLE ( VALUES ( Sales_Tab[CreationDate] ), ALL ( 'Date' ) ),
                FORMAT ( Sales_Tab[CreationDate], "YYYYMM" ) <= CurrentMonth
            ),
            Sales_Tab[CreationDate]
        )
    VAR LastMonthWithData = FORMAT ( LastDateWithData, "YYYYMM" )
    RETURN
        CALCULATE ( 
            AVERAGE ( Sales_Tab[OldLogicalQuantity] ), 
            'Date'[YearMonth Number] = LastMonthWithData,
            ALL ( 'Date' )
        )
)

 

CNENFRNL
Community Champion
Community Champion

CNENFRNL_0-1675039770885.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

thank you my friend

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors