I have a table with two columns:
No Value
1 20
2 10
3 50
4 35
5 17
I also have a variable or parameter where the variables will reduce the value of a column in a row.
So, if my variable V = 5
then my column will update:
No Value
1 15
2 10
3 50
4 35
5 17
Or if V = 50
then:
No Value
1 0
2 0
3 30
4 35
5 17
How can I do that?