08-28-2024 04:18 AM
I just would like to change the loop incremental sens.
Please let me know if you have an idea how to do it.
Solved! Go to Solution.
08-28-2024 04:36 AM
Hi jul,
@jul65651651 wrote:
I just would like to change the loop incremental sens.
What is the "loop incremental sens"?
When you want to scale the iterator value of a loop: apply simple math on the "i" value of your loop!
08-28-2024 07:01 AM
I tried to do it bu it doesnt work with the incrementation
08-28-2024 07:03 AM
the incrementation sens means rather have in 1, 2, 3 i want to have 4->3->2->...
08-28-2024 07:03 AM
Post your code and possibly explain in more detail what you want to achieve.
08-28-2024 07:12 AM
In order to change the excel cell positinning i control it with the number of the raw and the column
but for one condition i have to go back up for the raw selection
so i decided to use it with a incrementatio loop
However i need to change the incrementation loop
like i previously explained
08-28-2024 07:19 AM
First, we can't debug pictures. Second, you picture is completely useless since does not show how the row and column indexes are calculated.
(Third, try to avoid waisting all that block diagram space).
08-28-2024 07:25 AM
first, i cant share the vi is confidential
second, this incrementation is a numbering for a rate i command
08-28-2024 07:41 AM
Hi jul,
There is no way to natively change how "i" increments. It will always start at 0 and end at N-1, N being the total number of iterations.
If you want another index sequence, you have to do it yourself using simple maths (As @GerdW explained):
Regards,
Raphaël.
08-28-2024 07:58 AM
Thank you