Hello Clay S. I'm having an issue with assignment 3 whereby it's not outputting correctly... Despite the formula being correct (as far as i can tell! See below) the output is blank (also below) any help would be amazing this bug has eaten ALOT of time. thanks!
Your formula is likely failing due to missing data handling. The issue occurs when your formula assumes there's always a value in the "Latest funding merged" field, but some rows may be empty.
Add error handling to check if the field exists before processing:
if([Latest funding merged] != "",
Number(
tostring([Latest funding merged])
.tolowercase()
.replace("k", "000")
.replace("m", "000000")
.replace("b", "000000000")
) > 1000000,
false
)This prevents the formula from breaking on empty fields and returns false for missing data. [1] You can also click into the specific cells showing blank outputs to see more detailed error messages.
If you're still getting "Error evaluating formula", try refreshing your browser with Cmd/Ctrl + Shift + R.
Is that what you were looking for?
If you still need help resolving the issue with your formula or the blank outputs, I’m here to assist. Would you like to provide more details about what you’re trying to achieve or any specific errors you’re encountering?
The refresh of the browser worked! Thanks for your help and hope this helps other people down the line...
Glad to hear the refresh did the trick! If you have any more questions or need further assistance, feel free to ask.
