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

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
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
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

Forum statistics

Threads
1,214,649
Messages
6,120,731
Members
448,987
Latest member
marion_davis

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