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 August 31st. Request your voucher.

Reply
gadopwbi
Regular Visitor

Increment value to a integer variable in PipeLine

Hi, I've started to make a pipeline in Fabric, but I don't know how to increase the value of an integer variable using the Set Variable Activity...


The variable initially has a value of 0, then I want it to have a value of 1

any ideas ..

 

Thanks

1 ACCEPTED SOLUTION
frithjof_v
Super User
Super User

I think you need to use a "helper" variable to achieve this:

 

https://learn.microsoft.com/en-us/azure/data-factory/control-flow-set-variable-activity#incrementing...

 

Because there seems to be a limitation that variables cannot be self-referencing.

 

So you would need to use two variables, e.g.:

 

counter_i

temp_j

 

Choose your initial value for your variable (counter_i), e.g. counter_i = 0.

 

Then, use these two activities to increment counter_i:

 

First, you set temp_j equal to counter_i.

Then, you set counter_i equal to temp_j + 1.

 

You can repeat these two steps multiple times in order to keep incrementing the variables.

View solution in original post

1 REPLY 1
frithjof_v
Super User
Super User

I think you need to use a "helper" variable to achieve this:

 

https://learn.microsoft.com/en-us/azure/data-factory/control-flow-set-variable-activity#incrementing...

 

Because there seems to be a limitation that variables cannot be self-referencing.

 

So you would need to use two variables, e.g.:

 

counter_i

temp_j

 

Choose your initial value for your variable (counter_i), e.g. counter_i = 0.

 

Then, use these two activities to increment counter_i:

 

First, you set temp_j equal to counter_i.

Then, you set counter_i equal to temp_j + 1.

 

You can repeat these two steps multiple times in order to keep incrementing the variables.

Helpful resources

Announcements
Fabric July 2025 Monthly Update Carousel

Fabric Monthly Update - July 2025

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