I'm trying to create a new phone note form and was wondering, how do I pull in the user and date when clicking the "Initial call taken by" button? I can pull in either but haven't figured out how to pull in both.
Thanks for any help
Add a button of type "SETVALUES" and have it apply this value to your field:
{(user.realname),", ",(datetimestamp())}
I would like to be able to press a button that will add the following to a multiline edit box.
"I saw FEMALE TEST in the office today for an initial visit. She is an ambidextrous 48 years old woman with the complaint of: "
I will do this by creating an action button and SET VVALUE to say this. My problem is, how do I make it to add the name of the patient and the age?
Can someone help me please, thank you.
{"text " + PATIENT.FIRSTNAME + " " + PATIENT.LASTNAME + " text " + PATIENT.FORMATTEDAGE + " " + PATIENT.SEX + " text"}
Thank you very much.
Can you tell me how to pull the pharmacy name and number or just the number in? I can pull in all contacts but that really slows down the phone note loading. I really just need the pharmacy name/number or number.
Thanks,
Cliff
This is the command I use: REGPHARMACY()
jjordet said:
{"text " + PATIENT.FIRSTNAME + " " + PATIENT.LASTNAME + " text " + PATIENT.FORMATTEDAGE + " " + PATIENT.SEX + " text"}
You are awesome J, thank you so much for your help.
tduenas said:
jjordet said:
{"text " + PATIENT.FIRSTNAME + " " + PATIENT.LASTNAME + " text " + PATIENT.FORMATTEDAGE + " " + PATIENT.SEX + " text"}
You are awesome J, thank you so much for your help.
By the way, is there any way to change the "years" to "year"?
not unless you want to create your own function to create the text.
could use PATIENT_AGE() + " year old ".
jjordet said:
could use PATIENT_AGE() + " year old ".
works great! thank you!!!!