Menu

gifibalances()

Updated: 2024-10-30

Use the gifibalances() function to iterate the S100 and S125 forms for specific values.

gifibalances(S100.FieldCode, 1, 2, n) > 0.00

For example, to iterate if the sum of the S100 LongTermLiabilities fields 3140, 3141, 3142, 3143, 3144, 3149 are greater than $0, use:

gifibalances(S100.LongTermLiabilities, 3140, 3141, 3142, 3143, 3144, 3149) > 0.00

You can combine combine this function with a foreach() to test if the sum of the S125 Expenses fields 8520, 8521, 8522, 8523, 9270 are greater than $0:

foreach(S125, gifibalances(Expenses, 8520, 8521, 8522, 8523, 9270) > 0.00