First off, I am using excel 2013 on a work computer. I can not install Ktools, nor am I able to use VBA or macros.

I have a file that is only 3 pages.
Sheet 1) copy and pasted data from the intranet. This data is 13 columns wide and can be 200,000 rows long.
sheet 2) takes data from sheet one and converts it to usable info. This sheet is set to go to 200,000 rows so no data is missed. This sheet is TABLE formatted.
Sheet 3) In this sheet where the user enters info to search through all this data. There is a cell to enter a name, a cell to enter start search date, start search time, end search date, end search time
Sheet 3) also has a TABLE format that shows only the rows with data from sheet 2 that matches the search criteria. The table right now, is formatted also to 200,000 rows. If the data from sheet 2 in say row 2 does not meet the search criteria from sheet 3, The row in sheet 3 is left blank. So I have to have this table also set to 200,000 rows.

In sheet 2 there is a column M. In this column there is a type that will need to be searched. For argument sake, we will name these possibilities one, two, three, four, five, six, seven, eight, and blank, as in ""

SHEET 3 TABLE FORMULAS
In sheet 3 below the search criteria there is a row that looks at each individual possible of column M
I.E. In sheet 3, starting at b8 that has these options hard coded in it, b8=ONE, c8=two,d8=THREE, ETC...

Column 1 of table in sheet 3 uses this following format
iferror(vlookup($B$2,'SHEET2"!a1,1),""). This formula checks to see if the name entered in b2 matches in column1 row1 of table in sheet 2,

Column2 of table in sheet 3
if(@column1="","", if(@column7<>"","",b1 of sheet 2)).

Column 3 of table in sheet 3, is set to the same except c1 of sheet 2
Columns 4-6 uses the same pattern above with only the column of table in sheet 2 increasing.
Column 7 looks at the date and time supplied by user from above. if(column3&column4 < $d$1&$t$1,"BEFORE",if(column3&column4>$d$2&$t$2,"AFTER","") column3 is date column, column 4 is time column. This is explained later on.
Yes, you are all right. As you can see there is circular references.

The method above works.

However, this also requires that on table in sheet three to be formatted to 200,000 rows as weill. This makes the spreadsheet quite large and very slow to open. 3 sheets, 3 tables, each set to 200,000 rows.

Can anybody tell me if there is a way to make this work with having the table in sheet 3 to only 1,000 rows and still capture everything?

Time and date columns exlained.
In the copied data that is pasted in sheet 1, the date and time are not in any way standard format. Date is formatted as yyymmdd. Time is formated as hhmmss. However the info is entered from right to left, and does not show leading 0's and without any :. the time is also already formatted in 24hr. This all means that if the time is 00:00:00 you will see nothing, 00:00:01 shows 1, 00:01:01 shows 101. I fixed this in sheet 2 by first =sheet1time,TEXT("000000"). This forces all leading 0's to show and will always show as hhmmss. It will always have six digits.The time is not pre-formatted with semicolons :. i tried to use TEXT(sheet1time("00:00:00") but all I got was "VALUE" error.

I fixed this issue as well. In sheet 2, I have columns that take that time and converts into actual military format, It takes me an additional 5 cloumns to convert. Its not elegant but it works. This however does increase the file size. Five additional columns at 200,000 rows.

My main goal here is to make sheet 3 table smaller and still get the info I need. Please look at the formulas under SHEET 3 TABLE FORMULAS and see if that can be modified to work better. I do know that I need the table in sheet 3 to be formatted to 1,000 but 200,000.

Thanks for reading and any advice is much appreciated.