Top Banner
Using Link Don Stewart PPUG 2009 DonS@SDALC
29

Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Jan 04, 2016

Download

Documents

Lilian Manning
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Using Link

Don StewartPPUG 2009

DonS@SDALC

Page 2: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Using LINK• LINK label marker lets you put a hyperlink into a

note template, which is not saved when the note is saved.– Can link to program, spreadsheet, webpage, or

document– «LINK: Calculator | C:\Windows\system32\calc.exe» – «LINK: Brief Psychiatric Rating Scale |

http://www.medal.org/visitor/www/Files/Sheets/ch18/brief%20psychiatric%20rating%20scale/brief%20psychiatric%20rating%20scale.aspx»

Page 3: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

More Ways of Using Link

• Acrobat Forms that calculate or manipulate data can be linked (presented by ? at the UG in 2003)

• Microsoft Word or Open Office Writer, using the program to calculate and manipulate data (described by Walker Jackson)

• Linking to Javascript programs (described by the prolific Robert Pierce)

Page 4: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Linking a Spreadsheet

Page 5: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Clicking on this Link will bring up the spreadsheet in a Practice Partner Browser Window

Page 6: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

This spreadsheet has some macros in it, which may

need to be enabled

Page 7: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 8: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

The Score is updated automatically

As is the severity

Page 9: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 10: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 11: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Putting the cursor back in the note template and pressing “Control-V” will paste a screenshot of the spreadsheet into your note, nicely formatted in a table.

Page 12: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 13: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

A Brief Diversion

Before we move to the next level

Page 14: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Conditional Logic within Labels

• Conditional logic statements and letter codes are evaluated by Practice Partner within Labels, which can be very helpful at times.

• For example, you can pop up a Label to remind you about something:

• ||IF BODY_MASS_INDEX >= "25.0" {«*** BMI OVER 25 -- DIABETES SCREENING

INDICATED*** LAB<GLUCOSE, FASTING>[- Date] LAB<GLUCOSE, RANDOM>[-Date] LAB<HEMOGLOBIN A1C>[-Date] ...»} ||

Page 15: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

This is how it looks in the note.

Page 16: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Way Cool Stuff!

Clicking on this Link will bring up an Ideal Body Weight Calculator

Page 17: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Courtesy of Robert Pierce

Clicking on the “Copy text” button sends “L:IBW: 110” to the Windows Clipboard. Then, hitting the Escape Key or closing the PMSI browser window will put you back in your template

Page 18: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Back to the Template

Place your cursor here and press “Control-V” to paste from the clipboard.

Page 19: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

After You Press “Control-V”

Page 20: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Passing Parameters in Link

• Robert Pierce made the cognitive leap of genius that you can pass command-line parameters to programs using the Link label.

• «LINK: IBW | Q:\PPART\Decision Tools\IBW.html?hgt=||VITAL_HGT||&sex=||IF PAT_SEX = "male" {1} ELSE {0}||&datahgt=||IF VITAL_HGT = "" {0} ELSE {1}||&age=||PAT_AGE||»

Page 21: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Let’s Break this Down:

• «LINK: IBW | Q:\PPART\Decision Tools\IBW.html

IBW is the name of the

Link

Q:\PPART\Descision Tools\IBW.html is the Javascript program

that is activated when the link lablel is clicked

Page 22: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

The Parameters being Passed

• «LINK: IBW | Q:\PPART\Decision Tools\IBW.html?hgt=||VITAL_HGT||&sex=||IF PAT_SEX = "male" {1} ELSE {0}||&datahgt=||IF VITAL_HGT = "" {0} ELSE {1}||&age=||PAT_AGE||»

• hgt is set to ||VITAL_HGT||

hgt is the parameter passed to IBW.htnl

||VITAL_HGT|| is the letter code for the patient’s

height

Page 23: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Conditional Logic for sex

• «LINK: IBW | Q:\PPART\Decision Tools\IBW.html?hgt=||VITAL_HGT||&sex=||IF PAT_SEX = "male" {1} ELSE {0}||&datahgt=||IF VITAL_HGT = "" {0} ELSE {1}||&age=||PAT_AGE||»

• &sex=||IF PAT_SEX = "male" {1} ELSE {0}||

sex is set to 1 or 0

Based upon the evaluation of the conditional logic

statement

Page 24: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Do We Have Data for Height?

• «LINK: IBW | Q:\PPART\Decision Tools\IBW.html?hgt=||VITAL_HGT||&sex=||IF PAT_SEX = "male" {1} ELSE {0}||&datahgt=||IF VITAL_HGT = "" {0} ELSE {1}||&age=||PAT_AGE||»

• &datahgt=||IF VITAL_HGT = "" {0} ELSE {1}||

datahgt tells the

Javascript program whether

data exists

According to this conditional logic

statement

Page 25: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Finally, We Pass Age to IBW.html

• «LINK: IBW | Q:\PPART\Decision Tools\IBW.html?hgt=||VITAL_HGT||&sex=||IF PAT_SEX = "male" {1} ELSE {0}||&datahgt=||IF VITAL_HGT = "" {0} ELSE {1}||&age=||PAT_AGE||»

Page 26: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 27: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 28: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.
Page 29: Using Link Don Stewart PPUG 2009 DonS@SDALC. Using LINK LINK label marker lets you put a hyperlink into a note template, which is not saved when the note.

Logging In to the Home System

to show that this stuff really works