Re: Value does NOT work cannot be converted to a value
@Anonymous
I think the issue is that you are trying to convert Text to a Value in your formula, eg
Value( "Does NOT Work") creates the error
To fix, you just need another condition inside your If() to cover this situation, try this
If(
// condition 1
IsBlank(Parent.Default), Blank(),
// condition 2
IsError( Value(Parent.Default) ), Parent.Default,
// else condition
Text(
Value(Parent.Default) * 100,
"#%"
)
)
Also, to Patch the Blank(), make sure you have formula-level error management on in the Settings, ie
