Hi,
I have a repeating table with 10 fields. Out of those there are four fields which are Delivered Count, Added, Modified, Deleted. The sum of Delivered should be equal to Added + Modified + Deleted. I have a button on the form which I am disabling using rules.
Rules for button(All are seperate rules- not in a AND condition)
If field A is blank - Disable button
If field B is blank - Disable button
If field C is blank - Disable button
If Delivered Count is blank - Disable button
If Delivered Count is not equal to ADD + MOD + DEL - Disable button.
The rules are working fine for the first row. For second row the rule is not working fine. The button gets enabled only if I put the same Delivered Count value as of first row and it also does not checks for ADD + MOD + DEL for second row.
For Ex: 1st ROw - Delivered COunt = 20 then ADD =10, MOD=10 and DEL=10
For 2nd row - Deliverd Count = 20 then ADD=10. MOD=4, DEL=0 it enables. but if i change Delivered count to some other value apart from the same value as first row the button gets disabled.
Please help its urgent.