Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I need to compare Column A with Column B.
I want to fill the empty cells with the previous value.
Date A B
1.1. 1021 913
2.1. 1201
3.1. 1381
4.1. 1669 1525
Date A B
1.1. 1021 913
2.1. 1021 1201
3.1. 1381 1201
4.1. 1669 1525
Thank you!
Regards!
Veronika
Hi @veronika_prexl ,
You can use the fill down feature in Power Query.
https://www.youtube.com/watch?v=vQIDJVkFW8o
https://www.youtube.com/watch?v=xRDRwnfv1uE
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
you need to create 2 new measures
Anew =
var _prevDate = CALCULATE(MAX('Table'[Date]);FILTER(ALL('Table');'Table'[Date]<SELECTEDVALUE('Table'[Date])&& NOT(ISBLANK('Table'[A]))))
RETURN
IF(ISBLANK(SELECTEDVALUE('Table'[A]));LOOKUPVALUE('Table'[A];'Table'[Date];_prevDate);SELECTEDVALUE('Table'[A]))
and the same for B
Bnew =
var _prevDate = CALCULATE(MAX('Table'[Date]);FILTER(ALL('Table');'Table'[Date]<SELECTEDVALUE('Table'[Date])&& NOT(ISBLANK('Table'[B]))))
RETURN
IF(ISBLANK(SELECTEDVALUE('Table'[B]));LOOKUPVALUE('Table'[B];'Table'[Date];_prevDate);SELECTEDVALUE('Table'[B]))
do not hesitate to give a kudo to useful posts and mark solutions as solution
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |