I have two fields
max limit increase final increase 75 106 75 45 26 26 30 30 30 i want to get final increase by access query
iif increase < max get max limit
iif increase > get increase
how do it
many thanks
I have two fields
max limit increase final increase 75 106 75 45 26 26 30 30 30 i want to get final increase by access query
iif increase < max get max limit
iif increase > get increase
how do it
many thanks
basic principle would be
finallimit:iif(increase > maxlimit,maxlimit,increase)
many thanks