We use a form to insert lab results into the note. On some of the GFR results there is a (?) which causes mel vomit. I am trying to do a replace string and am getting hung up.
{replacestr("?"," ")}
What I want is if the lab value has a ? mark in it I do not want it to show in the form.
Thanks
Laurie
you're missing the first parameter to the function...{replacestr(stringtosearch, "?", " ")}
Thank you. I'll give it a try.
stringyouareusing = replacestr(stringyouareusing,"?","")
FMT(stringyouareusing,"B")
will take a string called stringyouareusing, remove the ? from it, and print it in bold. If you put something inside the 3rd argument of replacestr, it will replace the ? with whatever you put inside.
jrea said:
stringyouareusing = replacestr(stringyouareusing,"?","")
FMT(stringyouareusing,"B")
will take a string called stringyouareusing, remove the ? from it, and print it in bold. If you put something inside the 3rd argument of replacestr, it will replace the ? with whatever you put inside.
Thank You! It is very frustrating at times, but thankfully I have this board for help.