blenderwala
New Member
- Joined
- Apr 5, 2022
- Messages
- 8
- Office Version
- 2019
- 2016
- 2013
- Platform
- Windows
I got a task in which i have 2 Files
One is a Master File containing the names of the clients and the EMI amount with Payment 1 detail
And there is Another file containing Daily Collection with payment 2 Detail
In Master File there are two column
Pay 1
Pay 2(Values Coming From Another File Via VLookUp)
If someone pays both his EMIs at once, then that name might not be in the second list.
What I Need to Calculate is:
If one pays both his Total EMI Amount (EMI value *2) , his status should be shown as PAID.
If someone pays only one EMI then his status should be shown as HALF.
And if someone doesn't make any payments, his/her status should be shown as UNPAID.
__________________________
___________________________________
Any Help will be very very appreciated
Thank You.
One is a Master File containing the names of the clients and the EMI amount with Payment 1 detail
And there is Another file containing Daily Collection with payment 2 Detail
In Master File there are two column
Pay 1
Pay 2(Values Coming From Another File Via VLookUp)
If someone pays both his EMIs at once, then that name might not be in the second list.
What I Need to Calculate is:
If one pays both his Total EMI Amount (EMI value *2) , his status should be shown as PAID.
If someone pays only one EMI then his status should be shown as HALF.
And if someone doesn't make any payments, his/her status should be shown as UNPAID.
__________________________
Master.xlsx | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | Name | EMI | Pay-1 | Pay-2 | STATUS | ||
2 | Ajay | 500 | 500 | 500 | |||
3 | Vijay | 700 | 1000 | #N/A | |||
4 | Priyanka | 300 | 0 | 300 | |||
5 | Rohit | 1000 | 0 | 0 | |||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D2:D5 | D2 | =VLOOKUP(A2,'C:\Users\Nidhi\Desktop\Excel Problems\Main Issue\[Daily.xlsx]Sheet1'!$A:$D,3,0) |
Daily.xlsx | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | Name | EMI | Pay-2 | STATUS | ||
2 | Sumit | 500 | 0 | |||
3 | Priyanka | 700 | 300 | |||
4 | Rohit | 1000 | 0 | |||
5 | Ajay | 500 | 500 | |||
Sheet1 |
___________________________________
Any Help will be very very appreciated
Thank You.