Why is this lookup field not blank? (middle record)
Here’s the formula in the {formula} field:
IF({Chosen Status}!=BLANK(),"not blank","blank")
(also tried it with ARRAYCOMPACT around {Chosen Status})
This may have something to do with it: the lookup field {Chosen Status} is the end of a series of lookups, etc., like this:
Formula—>Lookup—>Lookup
That initial formula is:
IF({Status} = 'Received',{Vendor},BLANK())
so I’m not sure where the blank is getting sullied.
The goal here was to filter out records where {Chosen Status} was not blank and this is keeping it from working as anticipated. If we can’t get this to work, any other ideas of how to target that?
Use case, for context: the base tracks manufacturing souring. One table has the product requests (things the company wants to have made). Another table—the one in the photo—has proposals (a proposal from a factory; these proposals are linked to one product record and one factory record).
There are many proposals to one product request. Suppose there is product request for a windshield cleaner and there are 3 proposals for that windshield cleaner. I’m trying to build a way to mark all proposals as “complete” for the windshield cleaner as soon as one of the proposals changes its status to “chosen.”
This can be done just by having two linked record fields in the product request table—one for all related proposals and one for the winning proposal, but I’d like to have it built so that it can be triggered from the proposals status. Even if I go that route, I’m now just curious why this is being seen as not blank.
All thoughts and musings are welcome!