Hello,
I currently have a form datacardvalue which can be used as text or numeric when creating a new project entry. When displaying the data on the view form display I would like to format the data if it is numeric, if it's alphanumeric then leave it as is. I thought my current function would work but It keeps giving me an error (Invalid argument type, Expecting a number value. Location DataCardValue26.Value)
If(!IsNumeric(Parent.Default), Parent.Default, "$" & If(Parent.Default > 999, Text(Parent.Default, "[$-en-US]0,000.00"), Text(Parent.Default, "[$-en-US]0.00")))
If I change the false value to "no", the function works
If(!IsNumeric(Parent.Default), Parent.Default, "no")
when I use the numeric formatting on it's on for a number it works as well. Is there a reason why I can't nest the number formatting if statement in?