Multiple If Statement With Conditional Formatting

hc9587

New Member
Joined
Aug 3, 2021
Messages
5
Office Version
  1. 365
Platform
  1. MacOS
Hi all,

Trying to come up with a document that allows me to track all of my tutoring sessions, and whether or not I've been paid.

Trying to create a formula that accomplishes three things.

Column A = Date
Column B = Time of Session
Column C = Client Name
Column D = Total $ Due
Column E = Total $ Collected
Column F = Status of Payment

In Column F I want three outputs: PAID, NOT PAID, or blank.

PAID = Column D matches Column E
NOT PAID = Column E is blank, or zero (open to whatever is easier)
Blank (No cell data) = If the entire row is empty.

Looking for a formula that will accomplish all, and auto fill as new data is entered.

Any help is GREATLY appreciated.
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(D2="","",IF(D2=E2,"Paid","Not paid"))
 
Upvote 0
Wow, that was incredibly fast, thank you SO much.

Now a larger, probably more complicated question:

If I want to be able to automatically generate daily reports (basically just a sum of how much money I've earned each date), how could I execute that? I imagine it's some sort of VLookup table, but my recollection of how to pull that off from a class in college 13 years ago is faded...

I imagine this is a table that could live somewhere in columns H:J on the side of all of this data.
 
Upvote 0
You would use the sumifs function for that.
 
Upvote 0
How could I automatically populate each new date as they get entered so that it fills down in a table?
 
Upvote 0
If I have 8 rows of data with 8/2/21
and 5 rows of data with 8/3/21

What would I put for the formula to aggregate/sum up all of the entries per unique date?
 
Upvote 0
You would use the sumifs function.
 
Upvote 0
I'm sorry for my lack of expertise on the matter, but what would come after =sumifs(
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,496
Members
449,089
Latest member
Raviguru

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