If this column is this... unless this column is this

confusedcardiac

New Member
Joined
Jan 22, 2023
Messages
3
Office Version
  1. 365
Platform
  1. MacOS
Hello, I've tried pretty hard to figure this out and I am stuck. Essentially I am creating a list of patients with aortic aneurysms and the size determines when they follow up. But, if the have a bicuspid valve, the follow up date changes.

Column F has size
=IFS(F2>=4.4, "6 months",F2>=4, "12 months", F2<4,"Follow up with cardiology")
The problem is if a patient has a Bicuspid valve (which is listed in column G) and the size is 4 (F2>=4), then the patient needs follow up in 6 months instead of 12.

Also, in column E I have the first date of imaging and it would be great if, instead of 6 months, it actually gives me 6 months after the date.
Any help would be greatly appreciated, even if it is telling me it isn't possible. At least I won't keep spending so much time trying to figure it out.
 

Attachments

  • Screen Shot 2023-01-22 at 9.09.37 PM.png
    Screen Shot 2023-01-22 at 9.09.37 PM.png
    65.3 KB · Views: 5

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
In H2 and copy down:
Excel Formula:
=IFS(AND(F2>=4,G2="Bicuspid"),"6 months",F2>=4.4, "6 months",F2>=4, "12 months", F2<4,"Follow up with cardiology")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top