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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

How to fill the gaps in values between dates

1. Sorry for my English.

2. Here is the question.
I have gaps in dates, because rates set up not every day.

What i need is a measure that give me day to day values of rates.
for example:
Date-Rate
07/03/18 - 26.60
13/03/18 - 26.20
16/03/18 - 26.50
03/04/18 - 26.30

the goal is to have
07/03/18 - 26.60
08/03/18 - 26.60
09/03/18 - 26.60
10/03/18 - 26.60
11/03/18 - 26.60
12/03/18 - 26.60
13/03/18 - 26.20
14/03/18 - 26.20
etc.

I know that this is VERY easy task, but i cant handle it.

PBIX

3 tables.
2 dimention tables: DimCurrency (PK Guid), Calendar (PK Date)
1 fact table: FactCurrenciesRates (FK DimCurrency.Guid, FK Calendar.Date)

 

Thank you all in advance.




1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

Drag [Date] from Calendar table and add measure below.

Measure =
VAR d =
    SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
    CALCULATE (
        LASTNONBLANK ( FactCurrenciesCourses[ExchangeRate], 1 ),
        FactCurrenciesCourses[Date] <= d,
        CROSSFILTER ( 'Calendar'[Date], FactCurrenciesCourses[Date], NONE )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Divergence_One
New Member

Check-out these instructions to determine which of the two solutions will work best for you. Both solutions posted here are industry best.

v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

Drag [Date] from Calendar table and add measure below.

Measure =
VAR d =
    SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
    CALCULATE (
        LASTNONBLANK ( FactCurrenciesCourses[ExchangeRate], 1 ),
        FactCurrenciesCourses[Date] <= d,
        CROSSFILTER ( 'Calendar'[Date], FactCurrenciesCourses[Date], NONE )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Appreciated, Sam!
Thank you very much!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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