Recent DiscussionsMost RecentNewest TopicsMost LikesSolutionsTagged:TagRe: Index and match mystery (for me that is...) =INDEX(C21:C36;MATCH(C48;A21:A36);1) or =XLOOKUP(C48;A21:A36;C21:C36;;-1;1) Re: Finding time duration between a start date & time with end date & time Please provide a sample workbook with the expected results. Re: Finding time duration between a start date & time with end date & time =MOD(enddate+endtime-(startdate+starttime),1) Re: "Getting Name" bug on my worksheet Yes, it may be a bug related to this feature. Re: Advanced Excel Formula discussion - Problem with dynamic range Instead of CHOOSECOLS(E2:E5,1) it also works with +E2:E5 or T(E2:E5) or E2:E5&"". XLOOKUP() is expecting a single cell/value and using a range would not work, but using an array does. Re: "Getting Name" bug on my worksheet It could be Excel trying to retrieve the user name of the person who is operating/editing in this cell. Re: Controlling Formula Output in Excel Based on Cell Entry =IF(A2="","",B1+25-A2) Re: formula Excel help =TEXTJOIN(" ",TRUE,Import!F2:H2) Re: Why is my =SUM equation not giving the correct total? Your fomula adds A9*5 to every value in A1:A8. So, it is either one of these two: =SUM(A1:A8)+A9*5 =SUM(A1:A8;A9*5) Re: Table merge no option in PQ I guess you want to append the tables rather then merging them. Re: Agent Mode continuously loading Probably everyone on this side of the universe is trying to test 'agent mode' right now. And the servers can't handle it. Re: Calculate Days in between Dates =NETWORKDAYS(E68,D68,$L$6:$L$34)-1 Re: Question on Sumifs Remove the merged cells. Then it will become clear. Re: IF Statement Problem The layout doesn't match your formula. It also lacks column and row headers. And if every value is 0 then subtracting and multiplying does not change anything. Please provide a workbook with a meaningful explanation. Re: IF Statement Problem =IF(NOT(OR(D21:D23)),0,D17-(D17*C24)) Re: Time-Axis doubt Go to Insert > PivotTable. In the "Create PivotTable" dialog box, select your table range and be sure to check the box that says "Add this data to the Data Model" before clicking OK. (Copied from a chatbot answer) Re: Time-Axis doubt The values in your pivot table are all 0. It seems that a regular pivot table cannot deal with that small numbers. Try a data model pivot table instead. It works for me. Re: Dash (-)is not recognized in cell Maybe it is not a dash but a similar character. Check with UNICODE(). It should be 45. Re: What does this indicate? That indicates a value from an Excel datatype. It is one of these silent 'updates'. Re: How to sum columns and cells with dates and simple criteria? Why don't you use a pivot table?