Simple question, but I posted the question here because I couldn’t figure out how to do it after researching.
Please tell me a function to get a list of numbers greater than 3 in the list below in the appsheet’s Expression .
{1,2,3,4,5,6,7}
Return value I want to get: {4,5,6,7}
I have tried the formulas below, but they all result in an error.
{1,2,3,4,5,6,7} > 3
List(1,2,3,4,5,6,7) > 3
SELECT({1,2,3,4,5,6,7}, _ > 3)
SELECT({1,2,3,4,5,6,7}, [] > 3)
SELECT({1,2,3,4,5,6,7}, {1,2,3,4,5,6,7} > 3)
FILTER({1,2,3,4,5,6,7}, _ > 3)
FILTER({1,2,3,4,5,6,7}, [] > 3)
FILTER({1,2,3,4,5,6,7}, {1,2,3,4,5,6,7} > 3)
Thank you. Regards