Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
Solved! Go to Solution.
Almost. It would be:
if [Date] >= #date(2022, 12, 01) then [UPT] else [WC]
Pete
Proud to be a Datanaut!
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
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
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
Proud to be a Datanaut!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
28 | |
28 | |
23 | |
14 | |
10 |
User | Count |
---|---|
24 | |
21 | |
17 | |
10 | |
9 |