Home     Contact Us    
Main Board Job Seeker's Board Job Wanted Board Resume Bank Company Board Word Help Medquist New MTs Classifieds Offshore Concerns VR/Speech Recognition Tech Help Coding/Medical Billing
Gab Board Politics Comedy Stop Health Issues
ADVERTISEMENT




Serving Over 20,000 US Medical Transcriptionists

See inside (these go on the Word Board, BTW)

Posted By: Rad chic on 2007-11-05
In Reply to: what? - Shawna

"10.3 milliquery technician mag 3."


It is 10.3 mCi technetium Mag-3


Alternates, depending on doctor's/client's style


 10.3 millicuries technetium Mag-3


OR 10.3 mCi Tc-99m MAG-3


 




Complete Discussion Below: marks the location of current message within thread

The messages you are viewing are archived/old.
To view latest messages and participate in discussions, select the boards given in left menu


Other related messages found in our database

Kathy - See inside; belongs on Word board; thread locked.
Kathy,

E-mail myself or the Administrator (admin@mtstars.com) and tell us what the error message says. We will resolve this problem for you.

Posting policies are posted clearly. If you have problems with posting on one of the specialty boards, you should notify us.

Goldbird
All word questions need to be posted on the Word board. Please use the correct board to post.
/
All word questions need to be posted on the Word board. Please use the correct board to post.

/


Post word questions on the Word board NOT the Main board.
/
why on 1 computer for the same report would the word count be different in Word? (inside)
Like on 1 computer with word the document was 27000 character counts w/spaces

and the other computer (the one i type this account on says 13,000. How can there be such a difference with Word being the same? I am baffled.

Word Board=Help Board. NOT a do the math = figure it out yourself=GOOGLE IT!

Sorry, but your schedule doesn't justify making up your own rules. Use the word board for word q
nm
wrong board - rules are pls use WORD board

In the future, please post word questions on the Word board.
i
Please help on depression board. I put the link inside.


Administrator has a link to the board inside
I guess it is available with the other boards on the left, but I too have followed MTStars instructions with no luck getting these back. I've just added the boards I can't "jump to" in my favorites list.
Please post word questions on the Word board.
mm
Please post word questions on the Word board.
/
Post word questions on Word board.
/
Please kindly ask word questions on the Word board. Thank you.
/
Please post Word Help and s/l questions on Word Help Board.
//
Word/terminology assistance goes on Word board. (SM)
Please use boards appropriately.

Moderator
Post word questions on the Word board.
/
marking for Word Help questions on Word Board
// :)
Post word questions on the Word board only.
/
Inside is a great web site/message board
http://www.power-surge.com/php/forums/index.php?showtopic=8087
Direct link to nursing board inside
link below
In word?..see inside.
If you are typing in word and say you type a header, return and it would be "Alt L". This will start with 1 and automatical tab over to start typing. When you return at end it will give No. 2. Say you have 3 diagnoses, and when you return it says for, hit return again and this will turn it off. Then to start numbering again, hit Alt L. Hope that works.
wrong board - try word board
.
is normoreflexic a real word? see inside

He is areflexic at the ankles and normoreflexic at the knees.


 


MD is very clear.  Any suggestions?  Many thanks !!!


One Word: Siphotrol ...link inside
One can of Siphotrol will cover 2000 square feet of house. I have used this in the past, and it works better than anything I've ever tried.

http://lambriarvet.com/sbsite.php
Also, Word has the AutoCorrect and AutoText--see inside
Also, Word has the excellent AutoCorrect (for expanding words like "tp" into "the patient"). It is an excellent help, the only downside being that it maxes out at about 7000 entries.

Also, for longer portions of type, like something a doctor says over and over, there is AutoText in Microsoft Word. Just put the paragraph or sentence or whatever in th AutoText, and the next time the doc says it, you can put it in.

Also, you can save complete documents in Word that you may use again- like psychiatric tests that they do-- you can just open that document and rename it a new name (keeping the old document as the template, like "Dr Smith Psyc tests" and then rename it when you do it to something new- and you can have all your margins, test headings, tabs, etc.

I would not work without these 3 things being available--AutoCorrect, AutoText, and the ability to store documents that I might want to use again.

So, I'd just drag them into the 21st century! It is actually ridiculous. Would their programmer(s) work without their production shortcuts? They have plenty of them. Ask them not to use any, to type every / and etc. and have no canned programming stored, and see how they like it. Arrogant snobs.
see inside & seach word 2003
http://www.windowsmarketplace.com
Ask word questions on the Word board.
/
Please ask word questions on the word board.
/
Please ask word questions on the Word board.
/
Please ask word questions on the Word board.
/
Word help needed on word board
Can someone help over on the word board? Thanks.
Prescription Word Help on Word Help Board.. Thanks

See inside for how to access Word's line counter...
Open your Word program and select Tools and then Word Count.
As long as you are cutting and pasting inside DQS, its okay. Just don't try to paste from a Word
xx
Word Macro to count Lines Strict inside

Hi,


The solutions others gave are good, but if I just needed to get the number of lines with typing (and don't need an invoice or a report), I'd use a Word macro.


The other solutions offered have this drawback: If the body of your document contains tables, the count Word gives you is vastly inflated, for Word counts each cell in that table as a line. This is not what the eye sees, and becomes problematic when you try to justify such to your client.


Below is a macro for counting what we at Emmaus call Lines Strict. (i.e. Lines with typing on them, vs Lines Extended that includes the blank lines).


To use it, copy from Public Sub through End Sub, and paste it into your macros along with your other macros. Easiest way of doing this is (after you have copied the appropriate lines):


1. Click Tools | Macros, and select an existing macro.


2. Click the Edit button.


3. Once the Visual Basic Editor opens, press Ctrl+End to move to the bottom.


4. Paste the clipboard contents.


5. Click File | Compile Normal. (If you've pasted things that don't belong, it won't compile.)


6. Click File | Close and Return to MS Word.


Merry Christmas!
vJoe
http://www.mpword.com


OOPS! I looked at the HTML code after I pasted the code into the editor on this board, and it added things that when pasted into the Visual Basic Editor in Word will not compile. Here's the code if you want to retype it, but pasting won't work. If you send me an email, I'll attach the code into a .txt document, and you won't have any problems.  vjoet@attglobal.net


Public Sub GetLinesStrictCount()
    Dim CharsStrict As Long
    Dim Count As Long
    Dim ParaswBlanks As Long
    Dim ParasWOBlanks As Long
    Dim LineswBlanks As Long
    Dim BlankLines As Long
    Dim LinesWOBlanks As Long
    Dim NumOfTables As Long
    Dim NumOfRows As Long
    Dim TableRowCount As Long
    Dim x As Integer
   
    TableRowCount = 0
    NumOfTables = 0
    NumOfRows = 0
   
    ActiveDocument.ComputeStatistics (wdStatisticCharacters)
    ActiveDocument.ComputeStatistics (wdStatisticLines)
    CharsStrict = ActiveDocument.BuiltInDocumentProperties(wdPropertyCharacters)
    ParasWOBlanks = ActiveDocument.BuiltInDocumentProperties(wdPropertyParas)
    LineswBlanks = ActiveDocument.BuiltInDocumentProperties(wdPropertyLines)


    NumOfTables = ActiveDocument.Content.Tables.Count
    If NumOfTables > 0 Then
        For x = 1 To NumOfTables
            With ActiveDocument.Content.Tables.Item(x)
                NumOfRows = NumOfRows + .Rows.Count
            End With
        Next
        TableRowCount = NumOfRows
    End If
   
    If CharsStrict > 0 Then
        ParaswBlanks = ActiveDocument.Range(wdMainTextStory).Paragraphs.Count
    Else
        ParaswBlanks = 1
    End If
       
    If LineswBlanks > 1 Then
        LineswBlanks = LineswBlanks + 1
    End If
   
    If ParaswBlanks = 1 And ParasWOBlanks = 1 Then
        BlankLines = 0
    Else
        BlankLines = ParaswBlanks - ParasWOBlanks
    End If
   
    LinesWOBlanks = LineswBlanks - BlankLines
    Count = LinesWOBlanks
   
    MsgBox "Lines Strict (with typing) = " & CStr(Count + TableRowCount)
End Sub


 


 


Setting up macro in Word for jump code...inside
(you can actually use any key on the keyboard, I actually use F3 because it doesn't seem to interfere with anyting.)

I call it a "jumpcode" and what you need to do is create a Word macro for it. For example, I use (Alt + /) to insert blanks in a document. Now if I want to jump to the blanks I use (Alt + >). In reading your question, it sounds as if the symbol you want to "jump" to is already in the document, so you would just have to define the jumpcode for that prompt.

So, first create your macro.
1. Tools - Macro - Record New Macro.
2. Name your macro (ex. Jumpcode) or use the default Macro name
3. Assign macro to Keyboard.
4. Pick what keys to assign the keyboard macro - Example Alt + J (NOTE - SOME KEYS ARE ALREADY DEFAULT ASSIGNED BY WORD. SYSTEM WILL ALERT YOU TO THIS FACT! YOU WOULD THEN PICK ANOTHER KEY OR THE DEFAULT WORD KEY WILL BE OVERWRITTEN)
5. Select Assign - Close
6. You will then notice the "record macro function" come on (symbol of a little tape cassette will appear on screen). All key strokes from this point will be recorded until you turn off record macro function.
7. Recording your macro. Since the jumpcode you want to jump to is the >" you should set it up this way:
A. Ctrl + F (the find function). This will pull up the "Find and Replace" box.
B. Type in the prompt you want to find which would be >"
C. Hit "Find Next"
D. Then close "Find and Replace" box.
E. Stop recording. (Hit the square in the record macro icon)

Now when you hit "Alt + J" system should jump to the >" prompt in your document

As drug word questions on the drug board. Word questions on the Word board.
/
help on word board, please! nm

help on word board please
NM
Can someone help on the word board? Thank you! :) NM

help on word board, pls! nm

THAT's why there's a WORD board.
You just don't get it, do you?  They get so impatient for an answer that they can't post in the proper place.  They have to get in everyone's face.  Then if you don't answer quickly enough, they rant and rave about how nobody can be bothered to help them.  We don't get paid or thanked for helping, but they can sure whine about not being spoonfed the answers quickly enough.  Again, it's amazing how much a person can learn by doing their own research.  Even when I post links to where I found my answer, the same people are there pecking for answers the next day instead of using the reference links provided.  Oh, but we're the bad ones because we get tired of the same old abuse from unappreciative people.  I don't go there any more because I've had enough of it.  Admin has asked repeatedly for them to take their questions to the Word boards, so what's your problem?
Need some help on Word Board please

"Conjunctival ptosis repair, both eyes, conjunctival _____ 8 mm right eye and 9.5 mm left eye."


S/L ameliorectomy


Anyone know this term?


Thanks in advance!


Need help on Word Board
Thanks
please help on word board nm

Help on the word board please
NM
help on word board please
help please
use the word board
this is the main board
use the word board
this is the main board