Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?
Self-hosted
What do you need help with?
I’m experiencing an issue with a formula field in Baserow that’s showing the same status twice. I’ve tried a few things but can’t figure out what’s causing it.
I have a formula that determines the status of an application based on several conditions (like the number of reviews completed and eligibility checks).
Instead of displaying the status once, the field repeats the same status twice (e.g., “Review Round 1 Completed Review Round 1 Completed”) as two separate records in the same field.
Here’s the formula I’m using:
if(isblank(field(‘review round 1 assigned’)),
“Application Submitted”,
if(field(‘Eligibility status’) = “Eligibility flagged ”,
“Not Eligible”,
if(field(‘completed reviews’) >= 2,
“Review Round 1 Completed”,
“Reviews Assigned”
)
)
)