answersLogoWhite

0

No. If you have seen both the patient with the family and family members separately 90847 covers that situation.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What CPT code would you use if the physician performs a phloroplasty and vagotomy in the same surgical session?

43640


Can we use same needle on the same skin for tattoo?

If its used during the same session of the same day yes. But if its been placed aside for another session no, its not sterilized.


What does modifier 50 indicates in the cpt code?

CPT Code Modifier 50- Bilateral Procedure: Unless otherwise identified in the listings, bilateral procedures that are performed at the same session, should be identified by adding modifier 50 to the appropriate 5 digit code.


What is a concurrent session?

Concurrent session (or sentence) means 2 different sessions (or sentences) that will run at the exact same time.


How many saves has Moreno Rivera blown to the same team in the same year?

In the 2010 session Moreno Rivera blow two (2) save to the Rangers in the same year ... This was that First time that Moreno Rivera has blown two (2) saves to the same team in the same session ...


Is hiring session and job interview the same thing?

I think so.


What is CPT code for removal of seven nasal polyps?

The CPT code for the removal of nasal polyps is typically 31255, which specifically covers "endoscopic sinus surgery, with removal of nasal polyps." If seven polyps are removed during the procedure, the same code applies, as it encompasses the removal of multiple polyps within the same surgical session. Always consult the latest coding guidelines or a professional coder for precise billing practices.


What is the HTML for not letting someone access the same page twice in the same session?

HTML does not provide session handling. If you are using PHP for sessions though, you could simply check whether a session exists before the page is built up and return an error if there is already one. Of course you will have to watch out with that, because it's possible that the session hasn't been closed when the user left the page, i.e. it might happen that a user is opening the page for the first time but already has an existing session anyway.


Why does the constitution require both houses to be in session at the same time?

Because it avoids confusion.


What would the perfect sex session be like?

both guy and girl orgasming at the same time


What is the country code and area code of Same Timor-Leste?

The country code and area code of Same, Timor-Leste is 670, 21.


How do you keep the value of a variable between different executions of the same PHP file?

If you want to save a variable to be used in the same script at different executions by the same user, you should try using sessions. Start a session (session_start()) and retrieve the variable in question (for example, $_SESSION['var']). Throughout the script, edit the variable ($_SESSION['var']) and it will automatically be saved for the next execution by the same user.Alternatively, if you want the value of the variable to be accessed by all users (and allow all users to edit the variable), do as stated above, but before starting the session, define a session name with the session_name() function. All users will refer to the session defined in the session name, thus using the same variable despite the user.See the related links for further help using sessions.