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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
joooffice
Helper I
Helper I

Add index column with if statement

I currently add an index column that pulls the starting figure from the results of another query called Last Submission ID which works fine.

 

= Table.AddIndexColumn(#"Sorted Rows", "Index", #"Last Submission ID"+1, 1)

 

Sometimes the value for #Last Submission ID = null and so it causes an error. When it is null the index should just start at 1

 

I've tried  

= Table.AddIndexColumn(#"Sorted Rows", "Index", if #"Last Submission ID<>null then #"Last Submission ID"+1 else 1, 1)

but it doesnt work. I probably have the syntax wrong. 

 

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

@joooffice , you might want to try

= Table.AddIndexColumn(#"Sorted Rows", "Index", (#"Last Submission ID"??0)+1, 1)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

1 REPLY 1
CNENFRNL
Community Champion
Community Champion

@joooffice , you might want to try

= Table.AddIndexColumn(#"Sorted Rows", "Index", (#"Last Submission ID"??0)+1, 1)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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