I have 4 columns in a smartsheet
Value (number), Credit Checked?(tickbox), Credit Limit(number) and Credit Limit exceeded? (tickbox)
Value is manually entered
Credit Checked is based on a vlookup to another sheet
Credit limit is based on a vlookup to another sheet
Credit limit exceeded should tick if the following conditions are met.
If (Value ">" Credit limit and Credit checked = true then Credit limit exceeded = true else false)
My formula is =IF(AND([Value]@row > [Credit Limit]@row,[Credit Checked?]@row =1,"1","0")
This gives me an unparseable
If I use: =IF([Credit Checked?]@row, "1", IF(Value@row > [Credit Limit]@row, 1, "")) then it ticks credit limit exceeded even if credit checked is not ticked.
For the life of me I can't see what I'm missing.
Any pointers most greatfully received.