Need your help

Penny Bangalore

Board Regular
Joined
Apr 17, 2015
Messages
79
Hi All,

Below is my data as Table, i just want to look into the table and say, if a particular user is present on particular date i want the result should be "Present" if not leave blank.

(left most data is my table and right data where i need my result , am thinking and thinking of suitable formula for this.)








Excel 2010
ABCDEFGHIJKLMNOPQRSTUV
1DateuserscountsDateuser1user2user3user4user5user6user7user8user9user10user11user12user13user14
25/26/2015user12015/26/2015
35/26/2015user22215/27/2015
45/26/2015user32405/28/2015
55/26/2015user42385/29/2015
65/26/2015user52176/1/2015
75/26/2015user62336/2/2015
85/26/2015user72226/3/2015
95/27/2015user82456/4/2015
105/27/2015user92296/5/2015
115/27/2015user102026/8/2015
125/27/2015user11227
135/27/2015user12215
145/27/2015user13207
155/27/2015user14200
165/27/2015user15222
175/27/2015user16241
185/27/2015user17246
Sheet1
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.

AhoyNC

Well-known Member
Joined
Oct 10, 2011
Messages
5,279
Office Version
  1. 365
Platform
  1. Windows
Try:
Excel Workbook
ABCDGHIJKLMNOP
1DateuserscountsDateuser1user2user3user4user5user6user7user8
25/26/2015user12015/26/2015PresentPresentPresentPresentPresentPresentPresent
35/26/2015user22215/27/2015Present
45/26/2015user32405/28/2015
55/26/2015user42385/29/2015
65/26/2015user52176/1/2015
75/26/2015user62336/2/2015
85/26/2015user72226/3/2015
95/27/2015user82456/4/2015
105/27/2015user92296/5/2015
115/27/2015user102026/8/2015
125/27/2015user11227
135/27/2015user12215
145/27/2015user13207
155/27/2015user14200
165/27/2015user15222
175/27/2015user16241
185/27/2015user17246
Sheet
 
Upvote 0

gaz_chops

Well-known Member
Joined
Apr 29, 2003
Messages
6,485
Platform
  1. MacOS
Try this array entered formula (enter with Ctrl, Shift & Enter)

=IF(ISNUMBER(MATCH($H2&I$1,$A$2:$A$18&$B$2:$B$18,0)),"Present","")

or non array

=IF(SUMPRODUCT(($A$2:$A$18=$H2)*($B$2:$B$18=I$1))>=1,"Present","")
 
Last edited:
Upvote 0

Penny Bangalore

Board Regular
Joined
Apr 17, 2015
Messages
79
ADVERTISEMENT
Hi,

i got the answer .. thanks
 
Last edited:
Upvote 0

Forum statistics

Threads
1,195,749
Messages
6,011,434
Members
441,614
Latest member
TiaGtz

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
Top