Forum Discussion
Unifying Percentage Data Formats in a Single Column
- 7 years ago
It would probably make sense to clean the data up in Power Query editor.
You could add a custom column , something like
if [labvalue] > 1 then [labvalue] else 100 * [labvalue]
as long as that rule holds for all of your data
Hey rmussetter
In addition to the above from HotChilli ,
It is also a good opertunity for some data cleansing and alignments in you EHR. In addition, need to train the users to insert the correct numbers. Last, but not least, customise the system to accept only one type of numbers (0-1/0-100),
Raise this as an issue with your data team and/or DBA , or whom ever is in charge of that system (system admin, etc.)
Good luck!
A
Thank you Anonymous . This is a good point and I will raise it with our organization's data governance group. In the meantime, HotChilli's syntax solution works to bring me to the place I need to be.