I must, after pasting a long list of patient names, truncate to display only the first two letters of the last name, for privacy.
Beethoven, Ludwig V must become Be., Ludwig V
Doe, Jane X must become Do., Jane X
I've been using this:
=(LEFT(D66,2)&"."&","&(RIGHT(<wbr style="color: rgb(34, 34, 34); font-family: Arial, Helvetica, sans-serif; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;">D66,8)))
Beethoven, Ludwig V must become Be., Ludwig V
Doe, Jane X must become Do., Jane X
I've been using this:
=(LEFT(D66,2)&"."&","&(RIGHT(<wbr style="color: rgb(34, 34, 34); font-family: Arial, Helvetica, sans-serif; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;">D66,8)))
but I'm more than a novice so I have to change that far right number over and over to make each name display properly.
Is a nesting of a LEFT/RIGHT the wrong approach?
Many thanks!
Is a nesting of a LEFT/RIGHT the wrong approach?
Many thanks!