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
MMB920
Frequent Visitor

replace nulls with last 3 months average

Hello Community,

 

Am looking for a power query that would help me replace the null values highlighted to the last 3 months average i.e.(July to Dec 2023 = (June,May,Apr)/3

 

MMB920_0-1686280085843.png

Would greatly appreciate your input to resolve.. thank you.

 

MMB

1 REPLY 1
m_dekorte
Super User
Super User

Hi @MMB920,

 

Give this a go.

let
    Last3Months = Number.Round( List.Average( List.ReplaceMatchingItems( 
        Table.SelectRows( Source, each Date.IsInPreviousNMonths([month_], 2) or Date.IsInCurrentMonth([month_]) )[ib_call_pct], 
        {{null, 0}} )), 4 
    ),
    Source = Table.FromColumns(
        {
            List.Transform( {1..12}, each #date( 2023, _, 1) ),
            {.1655, null, .1442, .1506, .162, .0196, null, null, null, null, null, null}
        }, type table[ month_ = date, ib_call_pct = Percentage.Type]
    ),
    Replaced = Table.ReplaceValue( Source, each Record.ToList(_), each Record.ToList(_), (x, y, z)=> if (y{0} > Date.From( DateTime.FixedLocalNow()) and y{1} = null) then Last3Months else x, {"ib_call_pct"} )
in
    Replaced

 

with this result

m_dekorte_0-1686341069826.png

 

Ps. If this helps you solve your query, please mark it as solution. Thanks!

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
Top Kudoed Authors