Hi, gaurav das!
You have to capitalize cells in column D in worksheet Sheet1 or change the formulas in P3 to:
=SI.ERROR(BUSCARV($C3&"-"&$B3&"-"&" "&MAYUSC($D3)&"-"&P$2&"-"&$F3&"-"&$E3;'Connectivity Down Time Tracker'!$A:$V;22;0);"") -----> in english: =IFERROR(VLOOKUP($C3&"-"&$B3&"-"&" "&UPPER($D3)&"-"&P$2&"-"&$F3&"-"&$E3,'Connectivity Down Time Tracker'!$A:$V,22,0),"")
However that wouldn't solve you problem since worksheet "Connectivity Down Time Tracker" should contains more than one entry for a given month site. If as site goes down half an hour every 4 hours, using VLOOKUP (or eventually INDEX) you'll be only getting the 1st entry for each day. The solution comes for using SUMIFS function (or SUMPRODUCT).
Hope it helps.
Regards!