1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

健康診断の値eGFRをExcelを使ってクレアチニン値から計算する

Last updated at Posted at 2021-09-18

eGFRとは

eGFRとは腎臓の働きを調べる値です。
多くの医療施設で腎臓の機能を表す値ととして使われています。

eGFRは血液生化学検査のクレアチニンの値と年齢性別を使って計算します。

計算式

男性
eGFR = 194 * Cr^-1.094 * Age^-0.287

女性
eGFR = 194 * Cr^-1.094 * Age^-0.287 * 0.739

で計算します。詳細は 日本腎臓学会の以下の資料を参照。
https://jsn.or.jp/guideline/pdf/CKDguide2012.pdf

Excelで計算する

A B C D
1 年齢 クレアチニン 性別 eGFR
2 54 0.74 1 =194*POWER(B2,-1.094)*POWER(A2,-0.287)*IF(C2=2,0.739,1)
  • 性別は 1=男性、2=女性

エクセルをgithubに置きました

メモ

クレアチニンは筋肉で作られる老廃物。腎臓の糸球体で濾過されて尿として排泄される。腎臓の働きが弱くなると排泄されるクレアチニンの量が減ってeGFRの値が小さくなる。

詳細は共和キリンのウェブに詳しい説明があった。
https://www.kyowakirin.co.jp/ckd/check/check.html

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?