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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Marwen89
Frequent Visitor

latest value on the future

Hello,

I want to copy latest value of a mesure on the future even it s equal to 0 or null.

Exemple: copy 38068 to last date on the calendar.

tempsnip.png

 

Could you assist please with DAX formulas?

Thank you.

 

Regards,

 

 

12 REPLIES 12
Marwen89
Frequent Visitor

Any suggestions? 

Hi @Marwen89 ,

 

Try to create a measure like below:

Measure = 
VAR LastDate_ =
    CALCULATE (
        MAX ( 'Table'[Date] ),
        ALL ( 'Table' )
    )
var max_ = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Date]=LastDate_))
VAR result =
    CALCULATE (
        SUM('Table'[Value]),
        DATEADD('Calendar'[Date],1,DAY)
    )

RETURN
    if(max('Calendar'[Date])>=LastDate_,max_,Result)

Vlianlmsft_0-1649922033159.png

 


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello @V-lianl-msft ,

it does not work for future  date,

here i have last value at 04/04/2022, i want it copied for the future date.

Marwen89_0-1650017666773.png

Thanks,

BeaBF
Impactful Individual
Impactful Individual

@Marwen89 Hi!

 

Can you paste some sample data and explicit expcted result?

It isn't clear.

Thx,

BF.

@BeaBF  I really want to copy the latest value of "In Transit Retail TRV Picture end period (qty)" even is null for th future, Seen that  "In Transit Retail TRV Picture end period (qty)" is a measure.

A DAX formulas is needed .

Marwen89_0-1649765479272.png

Thanks,
Regards,

BeaBF
Impactful Individual
Impactful Individual

@Marwen89 you can do it in Power Query, thorught Table.FillDown function, like this:

 

#"NEW STEP = Table.FillDown(#"PREVIOUS STEP",{"In Transit Retail TRV Picture end period (qty)"})
in
#"NEW STEP"

 

BF

 

I want a dax formula @BeaBF 

BeaBF
Impactful Individual
Impactful Individual

@Marwen89  if you have a table like this:

 

BeaBF_0-1649768632682.png

 

you can create a calculated column to do so:

 

Colonna =
VAR LastNonBlankDate =
CALCULATE (
LASTNONBLANK ('Tabella (2)'[DATE], 1 ),
FILTER (
ALL ('Tabella (2)' ),
'Tabella (2)'[DATE] <= EARLIER ( 'Tabella (2)'[DATE])
&& NOT ( ISBLANK ( 'Tabella (2)'[RETAIL] ) )
)
)
RETURN
CALCULATE (
SUM ( 'Tabella (2)'[RETAIL] ),
FILTER ( ALL ( 'Tabella (2)'),'Tabella (2)'[DATE]= LastNonBlankDate )
)
 
BF.

 "In Transit Retail TRV Picture end period (qty)" is a measure,

BeaBF
Impactful Individual
Impactful Individual

@Marwen89 Can you paste me the code of the measure?

 

Thx

CALCULATE (SUM ( 'In Transit Retail, Supply'[TransitPictures Quantity] ), DATEADD ( LASTDATE ( 'Period'[Date] ), 1, DAY ))

 

@BeaBF 


 

BeaBF
Impactful Individual
Impactful Individual

@Marwen89 So try the calculated column above with Supply'[TransitPictures Quantity] .

 

BF

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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