Notifications
Clear all
Topic starter
I am trying to create a function in which if the provider performs a procedure and the procedure is bilateral, the modifier "50" will be linked to the order. Any suggestions would be welcome.
Posted : January 9, 2015 1:04 pm
Good Afternoon,
Below is a quick snippet of how you might do this.
{MEL_ADD_ORDER("S", "Injection Procedures", "Intermediate Joint", "50", "","", "", "", "", "", "")}
Below is a snippet where the modifier checks an obsterm to see which modifier to add.
{MEL_ADD_ORDER("S", "Injection Procedures", "Intermediate Joint", if obsnow("InjectionSide")=="bilateral" then "50" else if obsnow("InjectionSide")=="left" then "LT" else "RT" endif endif, "","", "", "", "", "", "")}
Please let me know if you have any questions.
Sincerely,
-James Caswell
Posted : January 9, 2015 1:58 pm