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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Value of the next row

Hi,

I want to replace the blank by the value of the next row of the same column. 

In this case I need to have 1409 instead of blank. Thanks

Capture.JPG

1 ACCEPTED SOLUTION
alexei7
Continued Contributor
Continued Contributor

Hi @Anonymous,

 

You could try creating a new custom column to do this for you.

 

The formula would be something like:

 

Column = if(Table1[IDRun4]=0,LOOKUPVALUE(Table1[IDRun4],Table1[Scaling_ID],Table1[Scaling_ID]+1),Table1[IDRun4]) 

(obviously replacing "Table1" with your own table name).

 

Hope that helps,

Alex

View solution in original post

2 REPLIES 2
alexei7
Continued Contributor
Continued Contributor

Hi @Anonymous,

 

You could try creating a new custom column to do this for you.

 

The formula would be something like:

 

Column = if(Table1[IDRun4]=0,LOOKUPVALUE(Table1[IDRun4],Table1[Scaling_ID],Table1[Scaling_ID]+1),Table1[IDRun4]) 

(obviously replacing "Table1" with your own table name).

 

Hope that helps,

Alex

Anonymous
Not applicable

Thanks @alexei7 it work!

I should have asked before!!!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors