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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
fjjohann
Frequent Visitor

Measure Quote vs Date

ASDF.PNG

 

Hello guys!

 

I need a measure that calculates the last quote if it does not have a record on the filtered date.

 

I have a related calendar table.

 

This measure will be used to calculate for example:
The current position of a stock, where [measure quote] * [qty hold]

 

Thank you

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @fjjohann,

 

In my test, source table is named as 'Quote' and calendar table is named as 'date table'.

 

Create a new table using CROSSJOIN.

Cross table = CROSSJOIN('date table',VALUES('Quote'[STOCK]))

Based on the crossjoin table and source table, generate the table which lists those date records not existing in source table.

Extra date row =
EXCEPT (
    'Cross table',
    SELECTCOLUMNS ( 'Quote', "date", 'Quote'[DATE], "ST", 'Quote'[STOCK] )
)

Append those unlisted date records to source table via UNION.

Union table = UNION(Quote,ADDCOLUMNS('Extra date row',"QUOTE",BLANK()) )

Create measure for [QUOTE]. Drag relative columns from 'Union table' into table visual.

Measure QUOTE =
CALCULATE (
    LASTNONBLANK ( 'Union table'[QUOTE], 1 ),
    FILTER (
        ALLEXCEPT ( 'Union table', 'Union table'[STOCK] ),
        'Union table'[DATE] <= MAX ( 'Union table'[DATE] )
    )
)

1.PNG

 

I have uploaded my pbix file for your reference.

 

Best regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
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

1 REPLY 1
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @fjjohann,

 

In my test, source table is named as 'Quote' and calendar table is named as 'date table'.

 

Create a new table using CROSSJOIN.

Cross table = CROSSJOIN('date table',VALUES('Quote'[STOCK]))

Based on the crossjoin table and source table, generate the table which lists those date records not existing in source table.

Extra date row =
EXCEPT (
    'Cross table',
    SELECTCOLUMNS ( 'Quote', "date", 'Quote'[DATE], "ST", 'Quote'[STOCK] )
)

Append those unlisted date records to source table via UNION.

Union table = UNION(Quote,ADDCOLUMNS('Extra date row',"QUOTE",BLANK()) )

Create measure for [QUOTE]. Drag relative columns from 'Union table' into table visual.

Measure QUOTE =
CALCULATE (
    LASTNONBLANK ( 'Union table'[QUOTE], 1 ),
    FILTER (
        ALLEXCEPT ( 'Union table', 'Union table'[STOCK] ),
        'Union table'[DATE] <= MAX ( 'Union table'[DATE] )
    )
)

1.PNG

 

I have uploaded my pbix file for your reference.

 

Best regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.