- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Help needed with the eGFR MDRD Formula
Hi all, I need help creating the following formula: eGFR = 175 x (SCr)-1.154 x (age)-0.203 x 0.742 [if female] x 1.212 [if Black]
thanks
OS
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Help needed with the eGFR MDRD Formula
Created:
Mar 5, 2021 09:38 AM
| Last Modified: Mar 5, 2021 6:44 AM
(1710 views)
| Posted in reply to message from sanchezpeinado 03-05-2021
Hopefully this example will give you a clue:
// = 175 x (SCr)-1.154 x (age)-0.203 x 0.742 [if female] x 1.212 [if Black]
= 175*:SCr - 1.154*:age - 0.203*If( :sex == "female", 0.742, 1 )*If( :race == "Black", 1.212, 1 )
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Help needed with the eGFR MDRD Formula
Created:
Mar 5, 2021 09:38 AM
| Last Modified: Mar 5, 2021 6:44 AM
(1711 views)
| Posted in reply to message from sanchezpeinado 03-05-2021
Hopefully this example will give you a clue:
// = 175 x (SCr)-1.154 x (age)-0.203 x 0.742 [if female] x 1.212 [if Black]
= 175*:SCr - 1.154*:age - 0.203*If( :sex == "female", 0.742, 1 )*If( :race == "Black", 1.212, 1 )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Help needed with the eGFR MDRD Formula
Thank you Mark,
Still not working, what am I doing wrong
175 * (:BL_lab_cr - 1.154) * (:age_BL - 0.203) * If( :gender_decode,"female" * 0.742,1) * If( :race_decode,"black" * 1.212,1)
Still not working, what am I doing wrong
175 * (:BL_lab_cr - 1.154) * (:age_BL - 0.203) * If( :gender_decode,"female" * 0.742,1) * If( :race_decode,"black" * 1.212,1)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Help needed with the eGFR MDRD Formula
fixed!
thank you!!!
thank you!!!