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
Go to Solution
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 )
View solution in original post