Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello everyone,
I have a table with a historical quote of currencies, as you can see there are dates with blank values, usually are the holidays, but I need this field to have the value of the last day that has quoted the currency.
King Regards
Solved! Go to Solution.
Hi ,
Not sure what extactly you are looking for but as per your screenshot it looks like to want to fill the blanks with previous day value.
To do so , Edit query --> Select eur_usd column --> Go to "Transform" tab --> select Fill down option from FILL.
Hi ,
Not sure what extactly you are looking for but as per your screenshot it looks like to want to fill the blanks with previous day value.
To do so , Edit query --> Select eur_usd column --> Go to "Transform" tab --> select Fill down option from FILL.
Hello,
the problem is that I am working on a calculated table, but thanks to your answer I was able to find a solution in the community, it is the following:
new eur_usd =
VAR LastNonBlankDate =
CALCULATE(LASTNONBLANK(cotizaciones[Date];1);
FILTER(
ALL(cotizaciones);
cotizaciones[Date]<=EARLIER(cotizaciones[Date])
&& NOT( ISBLANK(cotizaciones[eur_usd]) )
)
)
return
CALCULATE(
SUM(cotizaciones[eur_usd]);
FILTER( ALL(cotizaciones); cotizaciones[Date] = LastNonBlankDate)
) As you can see the result is fantastic ...
The solution I found in:
http://community.powerbi.com/t5/Desktop/Dax-fill-down-in-formula/td-p/318991
Thank you very much for helping me find the solution
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 40 | |
| 27 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 127 | |
| 108 | |
| 54 | |
| 39 | |
| 33 |