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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
anony711
Frequent Visitor

New added column in file - not in previous dataset

Hello everyone,

 

Thank you for reading my query. 

 

I have a folder which contains many excel files which are downloaded on a monthly basis. 

 

From Oct 2021 till Nov 2022 there are fields called "WC and EC" amongst others.

These two categories are merged to make a category called WC1. 

 

In Dec 2022, "EC" exists, "WC" also exists but data has been migrated to a new field called "UPT".

 

With further migration taking place, eventually "WC" will not exist and will be replaced by "UPT".

 

My question is:

My dashboard works fine but for Dec 2022 data is wrong due to UPT being added. 

 

What can I do to reflect the correct figures?

Thank you 

 

 

1 ACCEPTED SOLUTION

 

Almost. It would be:

if [Date] >= #date(2022, 12, 01) then [UPT] else [WC]

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

6 REPLIES 6
anony711
Frequent Visitor

Thank you @BA_Pete - appreciate your kind assistance 🙂

BA_Pete
Super User
Super User

Hi @anony711 ,

 

Update the code that creates your [WC1] column to something like this:

Text.Combine(
    {
        [EC],
        if [WC] <> null then [WC] else [UPT]
    }
)

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thank you @BA_Pete for your reply. 

Unfortunately I cannot use your formula as it fills all the WC, which are blank. WC is blank for some datasets because data was still migrating and thats fine.

 

UPT only is for Dec 2022.

 

How can I do it only for Dec 2022 and integrate in the dashboard leaving rest of the data sets as it is?

 

You would use something like this to only change values for Dec 22:

if Date.Month([Date]) = 12 and Date.Year([Date]) = 2022 then [UPT] else [WC]

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thank you @BA_Pete , so I guess if you want it for month and year after Dec 2022 (included) e.g. Dec 2022, Jan 2023, Feb 2023 etc then it would be:

 

Date.Month >= 01/12/2022 then [UPT] else [WC]?

 

 

 

Almost. It would be:

if [Date] >= #date(2022, 12, 01) then [UPT] else [WC]

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors