Go | New | Find | Notify | Tools | Reply |
Three Generations of Service |
At VA Doc's request, I'm tracking my BP daily. I've recently found out that "pulse pressure" (Systolic minus Diastolic pressures) is also a diagnostic indicator. Currently, I'm entering data twice: BP in Sys/Dia as 130/80 and then Sys and Dia in separate columns to calculate the PP. Just out of curiosity (and because I'm lazy...) I'd like to enter data just once. Either enter Sys and Dia in separate columns to do the calc and have it transpose that data into a 3rd column in the Sys/Dia format, or the reverse. Obviously NOT a huge problem, mostly curious. Hints? I'm using Open Office but I expect Excel methods would work as well. Be careful when following the masses. Sometimes the M is silent. | ||
|
Member |
Assuming Excel, but these are pretty basic formulas, so should work in things like Google Sheets & whatever the Apple version of Excel is. ColA: Sys ColB: Dia ColC: =ColA&"/"&ColB ColD: =ColA-ColB Then you just enter your Sys & Dia in A & B and the other 2 auto calculate. The Enemy's gate is down. | |||
|
Three Generations of Service |
That works, thanks! (prior message, if you saw it, was because I screwed up the syntax...) Be careful when following the masses. Sometimes the M is silent. | |||
|
Member |
I spend most of my day in Excel, so this one was a lay-up Some of the guys here that know VBA & Macros excel [pun] beyond my skillset, just not much need for those in my application. The Enemy's gate is down. | |||
|
Member |
This is the perfect use case for a chatgpt account: You can streamline your BP data entry and calculations in OpenOffice Calc (or Excel) by using formulas to automatically handle the transposition and pulse pressure calculation. Here’s how you can do it: Option 1: Enter Sys/Dia in Separate Columns and Concatenate Column A: Enter the Systolic values. Column B: Enter the Diastolic values. Column C: Calculate the Pulse Pressure (PP): Formula in C2: =A2-B2 Column D: Concatenate the Sys/Dia format: Formula in D2: =A2 & "/" & B2 Option 2: Enter Sys/Dia in a Single Column and Split If you prefer to enter the data as Sys/Dia and split it: Column A: Enter the BP values as 130/80. Column B: Extract the Systolic value: Formula in B2: =LEFT(A2, FIND("/", A2)-1) Column C: Extract the Diastolic value: Formula in C2: =RIGHT(A2, LEN(A2)-FIND("/", A2)) Column D: Calculate the Pulse Pressure: Formula in D2: =B2-C2 Additional Tips: Data Validation: You can use data validation to ensure that your entries in the Sys/Dia format are correct. Conditional Formatting: Highlight abnormal pulse pressures automatically by setting up conditional formatting rules. These setups will save you from redundant data entry while keeping your records neat and accurate. _________________________ You do NOT have the right to never be offended. | |||
|
His Royal Hiney |
I'm an Excel spreadsheet wizard but I use a BP that connects to a phone app that tracks my bp and heart rate. I can download the data into a spreadsheet if I so wish. Omron is the brand. I'm sure others does the same thing as well. "It did not really matter what we expected from life, but rather what life expected from us. We needed to stop asking about the meaning of life, and instead to think of ourselves as those who were being questioned by life – daily and hourly. Our answer must consist not in talk and meditation, but in right action and in right conduct. Life ultimately means taking the responsibility to find the right answer to its problems and to fulfill the tasks which it constantly sets for each individual." Viktor Frankl, Man's Search for Meaning, 1946. | |||
|
Powered by Social Strata |
Please Wait. Your request is being processed... |