I would like to return a value based on the total number of Medicare Days used prior to admission, plus the total days elapsed since admission to calculate day 100, or benefit exhaust date.
I've worked out the individual pieces but I'm having trouble combining the two.
- In the Days Remaining Column, I have this: =100 - NETDAYS([Admit Readmit or Pickup Date]@row, TODAY()) - [Prior MCA Days Used]@row
- (Total benefit allowed is 100 days)
- In the Day 100 Benefit Exhaust column I have this: =TODAY(+[Days Remaining]@row)
- In the Payer Type Column I have this: =IF([Primary Payer]@row = "Medicare A", "Yes", "No")
I am looking to accomplish the following:
- Combine the Days Remaining formula with the Payer Type formula so that a value is only displayed in the Days Remaining Column if the Primary Payer field is "Medicare A". Otherwise it should remain blank.
- Combine the Day 100 Benefits Exhaust formula with the Payer Type formula so that a date value is only returned if the Primary Payer field is "Medicare A". Otherwise it should remain blank.
Thank you