# Health Index Setup
## Medication
%%
```dataview
TABLE Medication_CommonBrand as "Brand Name", brand-name, Medication_Class as "Class", class
where contains(Type,"Medication") And contains(fileClass, "Chemical")
Sort file.name ASC
```
%%
## Medication Class
%%
```dataview
LIST
from "Health/Medication Classes"
Sort file.name ASC
```
%%
## Hormones
%%
```dataview
LIST
where contains(Type,"Hormone") And contains(fileClass, "Chemical")
Sort file.name ASC
```
%%
## Feelings
%%
```dataview
TABLE
from "Health/Feelings"
Sort file.name ASC
```
%%
## Diagnosis
%%
```dataview
TABLE
from "Health/Diagnosis"
Sort file.name ASC
```
%%
## Supplements
%%
``` dataview
TABLE Supplement_Form
where contains(Type,"Supplement") And contains(fileClass, "Chemical")
Sort file.name ASC
```
%%
## Topical Treatments
%%
``` dataview
TABLE Topical_Use
where contains(Type,"Topical Treatment") And contains(fileClass, "Chemical")
Sort file.name ASC
```
%%