Amit Tandon @AmitTandonExcel
I share helpful & innovative tips on Excel solutions. Author - https://t.co/fC0egxSZYV, an Excel & VBA resource. Active contributor to Microsoft Community. ExcelAnytime.com New Delhi Joined February 2017-
Tweets774
-
Followers99
-
Following61
-
Likes6
#Excel SUM Smallest 3 of 7 Non Contiguous Cells (A2,A4,A5, A7,A8, A11,A12), skip blank cells. Array/CSE formula: =SUM(SMALL(IF(COUNTIF(INDIRECT({"A2","A4","A5","A7","A8","A11","A12"}),"<>"),SUMIF(INDIRECT({"A2","A4","A5","A7","A8","A11","A12"}),"<>")),ROW(1:3)))
#Excel SUM Smallest 3 Values in Non-Contiguous Cells. SUM Smallest 3 of 7 Non Contiguous Cells (A2,A4,A5, A7,A8, A11,A12), skip blank cells: =SUM(SMALL(IF(COUNTIF(OFFSET(A2,{0,2,3,5,6,9,10},),"<>"),SUBTOTAL(9,OFFSET(A2,{0,2,3,5,6,9,10},))),{1,2,3}))
#Excel SUM Smallest 3 Non-Contiguous Cells. SUM Smallest 3 of 7 Non Contiguous Cells (A2,A4,A5, A7,A8, A11,A12) w/ values >0.Array =SUM(SMALL(IF(SUMIF(INDIRECT({"A2","A4","A5","A7","A8","A11","A12"}),">0")>0,SUMIF(INDIRECT({"A2","A4","A5","A7","A8","A11","A12"}),">0")),ROW(1:3)))
#Excel SUM Smallest 3 Values in Non-Contiguous Cells. SUM Smallest 3 of 7 Non Contiguous Cells (A2,A4,A5, A7,A8, A11,A12) having values greater than zero: =SUM(SMALL(IF(SUBTOTAL(9,OFFSET(A2,{0,2,3,5,6,9,10},))>0,SUBTOTAL(9,OFFSET(A2,{0,2,3,5,6,9,10},))),{1,2,3}))
#Excel SUM Smallest 3 Values in Non-Contiguous Cells.SUM Smallest 3 of 7 Non Contiguous Cells (A2,A4,A5, A7,A8, A11,A12) having values greater than zero.Array =SUM(SMALL(IF(CHOOSE({1;2;3;4;5;6;7},A2,A4,A5,A7,A8,A11,A12)>0,CHOOSE({1;2;3;4;5;6;7},A2,A4,A5,A7,A8,A11,A12)),ROW(1:3)))
#Excel SUM Largest 4 Values in Non-Contiguous Cells. SUM largest 4 values in the 2nd row (B2:X2) where 1st row (B1:X1) = 1 or 2. =SUM(AGGREGATE(14,6,(B2:X2)/((B1:X1={1;2})*(B2:X2<>"")),{1,2,3,4}))
#Excel SUM Largest 4 Values in Non-Contiguous Cells (even intervals). SUM largest 4 values in 2nd row cells: B2,C2, F2,G2, J2,K2, N2,O2, R2,S2, V2,W2 (consider 1st 2 cells, skip next 2). Array: =SUM(LARGE(IF(B2:X2<>"",IF(MOD(COLUMN(B2:X2)-COLUMN(B2)+1,4)={1;2},B2:X2)),{1,2,3,4}))
#Excel SUM Largest 4 Values in Non-Contiguous Cells of a Row. Non-Contiguous cells with even intervals - SUM largest 4 values in the 2nd row cells of B2, F2, J2, N2, R2 & V2 - Array/CSE: =SUM(LARGE(IF(B2:X2<>"",IF(MOD(COLUMN(B2:X2)-COLUMN(B2)+1,4)=1,B2:X2)),TRANSPOSE(ROW(1:4))))
#Excel SUM Largest 4 Values in Non-Contiguous Cells of a Row. Non-Contiguous cells with even intervals - SUM largest 4 values in the 2nd row cells of B2, F2, J2, N2, R2 & V2 - Array/CSE Formula: =SUM(LARGE(IF(B2:X2<>"",IF(MOD(COLUMN(B2:X2)-COLUMN(B2)+1,4)=1,B2:X2)),{1,2,3,4}))
#Excel Assign separate Values to Non-Contiguous Cells & return SUM. In range A2:A10 if "Yes" return SUM: if 2nd or 8th cells are "Yes" add 10 for each; if any other cells are "Yes" add 5 for each: =SUMPRODUCT((A2:A10="Yes")*(ISNUMBER(MATCH(ROW(A2:A10)-ROW(A2)+1,{2,8},0))*5+5))
#Excel SUM non-contiguous Ranges: 4 (B2) consecutive col A cells, skip 2 (B4) cells, start frm cell A4 ie 3rd Position (B3). For rng A2:A100, cells considered:A4:A7,A10:A13,A16:A19 ...=SUMPRODUCT(((ROW(A2:A100)-ROW(A2)+1)>=B3)*(MOD(ROW(A2:A100)-ROW(A2)-B3+1,B2+B4)<=B2-1)*A2:A100)
#Excel SUM Non-Contiguous Ranges of a Column - in consecutive col D cells, SUM every 4 (B3=4) consecutive col A cells, skipping every 2 (B4=2) cells, & starting from cell A4 ie. 3rd Position (B2=3). Enter in cell B2, copy down: =SUM(OFFSET(A$2,(ROW(A1)-1)*(B$3+B$4)+B$2-1,0,B$3))
#Excel Using SUMIF with Dates Range. Using SUMIF for Dates in Calendar Year - SUM Col D where Col A dates are in the Year (01 Jan-31 Dec) of cell I37 date & Col B cells are not blank: =SUMIFS(D2:D20,A2:A20,">="&DATE(YEAR(I37),1,1),A2:A20,"<="&DATE(YEAR(I37),12,31),B2:B20,"<>")
#Excel Using SUMIF with Dates Range. Using SUMIF for Dates within a Month / Year - SUM Col D where Col A dates are in the Month & Year of cell I37 & and Col B cells are not blank: =SUMIFS(D2:D20,A2:A20,">"&EOMONTH(I37,-1),A2:A20,"<="&EOMONTH(I37,0),B2:B20,"<>")
#Excel SUMIFS using tilde wild card ("~") allows searching words that contain a wild card (* or ?). Tilde before asterisk does not treat asterisk as a wildcard. SUM col D for col C values which start with "*F" and where col B = "Metro" =SUMIFS(D2:D20,C2:C20,"~*F*",B2:B20,"Metro")
#Excel SUMIFS using wildcard Question mark (?) which matches any single character: SUM column D for column C values with any single character bewteen "I" & "eland" & non-blanks in column B: =SUMIFS(D2:D20,C2:C20,"I?eland",B2:B20,"<>")
#Excel SUMIFS using wildcard Asterisk (*) which matches any sequence of characters: SUM column D for column C values starting with "U" where column B cells are non-blank: =SUMIFS(D2:D20,C2:C20,"U*",B2:B20,"<>")
#Excel SUMIF Non-Contiguous Ranges. Search ranges "B2:B5","B9","B14:B16" for "Car" criteria, SUM ranges "D2:D5","D9","D14:D16".Named rng "RngNonContg" (F12:F14)- "B2:B5","B9","B14:B16" in F12,F13,F14 =SUMPRODUCT(SUMIF(INDIRECT(RngNonContg),"Car",OFFSET(INDIRECT(RngNonContg),,2)))
#Excel SUMIF Non-Contiguous Cell References for "Range" / "Criteria". Searches 3 non-contiguous ranges "B2:B5","B9","B14:B16" for "Car" criteria, & corresponding SUM range ("D2:D5","D9","D14:D16"): =SUM(SUMIF(OFFSET(B2,{0;7;12},,{4;1;3}),"Car",OFFSET(D2,{0;7;12},,{4;1;3})))
#Excel SUMIF Non-Contiguous Cell References for "Range". Searches 3 non-contiguous ranges "B2:B5","B9","B14:B16" for "Car" criteria, & corresponding SUM range ("D2:D5","D9","D14:D16"): =SUMPRODUCT(SUMIF(INDIRECT({"B2:B5","B9","B14:B16"}),"Car",INDIRECT({"D2:D5","D9","D14:D16"})))

swaroop @swaroop60699781
54 Followers 499 Following Follows Maritime,Logistics,Trade,Economy, Business & Equity Markets
MNK_Excel @Mnkexceltips
345 Followers 536 Following Learn How to Solve your Business Problems & Questions Using Excel Making you awesome in excel,data analytics & charting. follow me on Instagram @mnkexceltips
diljeetkas1🤖❄️ @diljeetkas1
13 Followers 407 Following Computer Science Graduate 💻 Linux,Windows O/S user ♨️... Prefers Excel over PowerBI 📊📈📉...
OMAGA TIJANI @CONSULTJAYOMAGA
3 Followers 87 Following
islam ahmed @islamah74011959
12 Followers 432 Following
Tito @Excelshortcut
407 Followers 768 Following Providing useful tips and guidance for #excel users. helping you max out productivity https://t.co/M5E3hkzN7G Get the Newsletter Now! https://t.co/OEtEZhzg2J
Hmkea @aalihmke
209 Followers 2K Following
Onajite Onobaraye @OnajiteOnobara1
33 Followers 997 Following The word of God is settled in heaven and earth.
Bobby Thompson @bobbytwhatup
64 Followers 1K Following
bankbryan @bankbryan
250 Followers 299 Following
Nitin Singh @NitinSi58834406
2 Followers 95 Following I N D I A N🇮🇳 CA student (If u can't do good Better don't do ANYTHING) :LOVE=EDM,NATURE: 🙏most of time high isliya dil pai mat layna tweets🙏
Rafael Nieto Arteaga @Rafael_Nieto
536 Followers 2K Following 'More a trait of character than of the brain' - BG Mis opiniones o reacciones son personales y no representan la posición de la empresa con la que trabajo.
Rudra Castings @rudracastings
18 Followers 35 Following
abhishake @cacwaabhishake
66 Followers 2K Following
Rodney Manyemwe @ManyemweRodney
81 Followers 897 Following
Genius Mind🧠 @gururaj23
257 Followers 5K Following Indian🫂/Engineer 👷/Bookholic📖/Searching my self in the👣 🌎
Cozy Fireplace 🖤�... @aparker70
2K Followers 3K Following #SteelersNation in New England | Gardener | Geopolitical Nerd | #HereWeGo
chaim @chaimzv
159 Followers 4K Following
Mik_Le @mik_salenthill
229 Followers 3K Following #OpenData #Vba #R_programming #DataLover #Ardicore #Python Io sono il tipo che sta sulle sue!!! 😂 Parmigiana e struffoli. Il sole calante su Valle della Cupa!
David Horton @david_horton2
492 Followers 2K Following
Shelley Fishel @shelleyfishel
3K Followers 3K Following #MSOfficeMaestro - #Microsoft #Office #training for Assistants @tomorrowsva#MicrosoftOffice #Word #Excel #PowerPoint #Outlook #Training #Speaker
PowerExcel AI |Exce... @PowerExcelBI
527 Followers 2K Following #PowerExcel #AI #Excel #JavaScript #Addin Install-free Power Functions, #PowerQuery Gen, #Data Prep, #Finance@ https://t.co/Kzr4bxCJn3 & https://t.co/g4Xl7CjPE4
Power-user @PowerUser_soft
2K Followers 5K Following Power-user is the productivity add-in for PowerPoint, Excel and Word. With dozens of features designed to save time, it's an essential tool for business success
ANALYTICA BOOKS @SofExcel
374 Followers 3K Following We are writing #business #books but our books are brandnew presentation style books..Less Text More Visualization👍Funny and Quick Way of Learning...
PowerVBA➖C#, VB.NET... @PowerBotAI
382 Followers 3K Following #PowerVBA brings .NET + #CodeGen to #VBA (COM/admin-free) for C#/ #VB/#VisualStudio #macros/automation in #MicrosoftAccess, #Excel, #Office365 & @PowerAccessSQL
sanjeev @sanjeev02112870
610 Followers 4K Following Are you looking for an Excel Expert or data entry operator? Myself Sagar. I am a freelancer. Please check out my freelancer profile https://t.co/lNB0VE1Hzx
Shashidhar Chonnad @Shashidhar881
69 Followers 975 Following MBA graduate, fitness expert, humble and always ready to learn new things, also a travel enthusiast.
Kevin adundo @Kevo46664
488 Followers 5K Following
Hakeem @hakeemtemitope1
13 Followers 45 Following
William Kiarie @BillWilliamsK
588 Followers 1K Following Helping you everything data analysis & visualization in Excel | Power BI | Google Sheets -via training https://t.co/4JJwh8zgWu
Brave Indian @Arvind_ruhela
23 Followers 175 Following
MK @akpksk
19 Followers 99 Following Fond of good friends, travelling, love beauties,driving, shopping, ayurveda, yoga, human relationship etc. etc.
Palani @Palani_SLM
152 Followers 535 Following 🌬 I am an Excel addict🔄✍📈📊 Teacher💯 Civil Engineer 🛤🗼🏘 Subscribe My YouTube channel👉 https://t.co/Q2onBGf29P
VS @vsingh210
88 Followers 2K Following
Microsoft Tips and Tr... @ReadySteadyXL
34K Followers 68 Following Sharing tips on #Microsoft including #Excel #Teams #Word #PowerPoint #Outlook
Fedica @FedicaHQ
371K Followers 2K Following Optimize, Visualize & Strategize With AI: All-in-One Social Media Publishing, Analytics, Listening & Analysis Platform.
Excel London @ExceLLondon
26K Followers 947 Following Official channel of Excel London | Celebrating 25 years in 2025 | #ConnectingLives
Excel Online Pro @Excel_Online_4u
539 Followers 1K Following Here to share events, tutorials, courses, books... related to #microsoft_excel #excel #Excel_dashboard #Excel_VBA ....
Matthew Bernath, CFA @Matthew_Bernath
2K Followers 2K Following #DataEcosystems | #AlternativeData | #DataCollaboration | #FinancialModelling | #VentureCapital #InfrastructureFinance
Sean Melvin @ThatBlokeSean
130K Followers 129K Following Former Law Firm Finance Systems Consultant. Now working in the charity sector. Love using Excel. I tweet weekly about things that interest me & hopefully you.
Excel4apps @Excel4apps
907 Followers 1K Following Leading provider of Microsoft Excel-based solutions that accelerate ERP reporting and data loading tasks, used with SAP, Oracle E-Business Suite and PeopleSoft.
ARC Readers & Authors @ARC_Readers
20K Followers 19K Following Content marketing and Book Promotions.
SHOUT my Book @SHOUTmyBook
80K Followers 61K Following Submit and Promote your books online on our website http://t.co/Qh9uPJyXhd
Eloquens @eloquenscom
754 Followers 1K Following Eloquens is the world’s first marketplace for sharing Best Practices. Mission: To make the best ready-to-use know-how accessible to everyone.
khamad @keith_hamad
59 Followers 678 Following
Booktips for Authors @BooktipsAuthors
42K Followers 42K Following Helping authors shine with affordable services + human support. Editing • Covers • Audiobooks • Trailers • More.
Excel Whizz @excel_whizz
3K Followers 96 Following Sharing Excel tricks, tips and support from https://t.co/g5Pv4McU7e. Business Intelligence, Data Science, Statistics, Big Data, Coding.
Excel and Access, LLC @ExcelAndAccess
2K Followers 53 Following Get Microsoft Help: Get a Smarter Solution. The Microsoft Excel, Power Query, Access, SQL Experts. Help for Business, Government, Education & Non-Profits.
Phil Kowalski @ExcelBlogDOTNet
6K Followers 6K Following Excel Lover, Father, Husband, Teacher - not in this order maybe
The Excel Club @thexcelclub
2K Followers 244 Following A platform to learn the basic and advanced features of Microsoft Excel plus a lot more. Taking over the world one cell at a time. #thexcelclub #dataminingng #bi
BetterSolutions.com @OfficeAddins
875 Followers 84 Following 100% FREE Online Resources for Excel, Word, PowerPoint, Outlook, VBA, C# and JavaScript. Microsoft Office Expertise and EUDA Services.
MS Excel Jedi @MSExcelJedi
3K Followers 100 Following Excel Tutor and Consultant. Learn how to make your data more meaningful.
Dan Harrison @WizardOfExcel
1K Followers 364 Following Excel expert offering advice, solutions, training and consultancy on all aspects of Excel.
Chris Chua @DefeatExcel
1K Followers 2K Following Facing an #Excel monster? DefeatExcel brings you on a journey to learn Microsoft Excel in a fun and engaging way so that you can do more in less time.
Computergaga | Alan M... @Computergaga1
19K Followers 5K Following 🏆Microsoft MVP 💡20+ years mastering Excel 🚀45M+ views on YouTube | Excel Tips | Courses ⬇️
Lesley Davidson @LesleyJDavidson
2K Followers 5K Following Broker Owner of Manifest Realty Brokerage and structural engineer
IndiaExcel @IndiaExcelBlog
4K Followers 1 Following Our #Blog is a #tutorial site. #IndiaExcel is based on #Microsoft #Excel #Articles #Posts & #Videos. #Subscribe #Youtube #Channel at 🔗https://t.co/taJAkhy0yr 👈
Jon Wittwer @Vertex42
4K Followers 67 Following Excel Tips, Spreadsheets, Financial Calculators, Calendars, Schedules, Charts ...
Eric Hunzeker @Excel_Geek
1K Followers 351 Following Husband. Hockey dad. Beer enthusiast. Software company executive. Excel master.
Neale Blackwood @ExcelYourself
1K Followers 976 Following Author, Excel Expert, CPA. I write the Excel Tips articles for the CPA Australia Magazine. Like music by Jackson Browne, Eagles, Mark Knopfler.
Shelley Fishel @shelleyfishel
3K Followers 3K Following #MSOfficeMaestro - #Microsoft #Office #training for Assistants @tomorrowsva#MicrosoftOffice #Word #Excel #PowerPoint #Outlook #Training #Speaker
Excel Strategies LLC @ExcelStrategies
2K Followers 2K Following Excel Strategies, LLC is a full-service, turn-key analytics, consulting, and training solution provider for all of your small and medium business needs!
Excel Ace @Traciawilliams
2K Followers 1K Following
Andreas Exadaktylos @mellontraining
4K Followers 3K Following Learn through online courses, Udemy courses, videos, articles and get paid from it.
Rick Grantham @BIStrategyGuy
933 Followers 394 Following Father. Son. Insomniac. Can Eat an Entire Cheesecake
Excel Tips & Forum @ExcelTipsnForum
6K Followers 1K Following Founded in March 2003, http://t.co/OqYc6iu2BE & http://t.co/A9HlqNG8PU has become the leading source of Microsoft Excel tips, tricks and information on the web.
Patricia McCarthy @Excel_Diva
2K Followers 119 Following Software trainer; author of Excel CPE EBooks; CPE Provider. Check out http://t.co/veoXBaKU and http://t.co/cRCZTU8T
eFinancialModels @eFinancialModel
7K Followers 5K Following eFinancialModels provides a marketplace to share industry specific financial model templates and to connect with skilled financial modelers
Contextures @contextures
5K Followers 107 Following Excel website & blog by Debra Dalgleish @ddalgleish Excel MVP
howtoexcelatexcel @howtoexcelatex
17K Followers 362 Following My aim is to help YOU Excel At Excel. Sign Up to the How To Excel Newsletter for 3x FREE Excel tips issued every month and receive my FREE Excel Tips Ebook
ExcelTV @ExcelTV
5K Followers 53 Following Excel yourself with Microsoft Excel - tips, tricks, tools, techniques and data visualizations for everyday analysts.
Power Spreadsheets @PSpreadsheets
9K Followers 114 Following Become an #Excel Power User. Microsoft Excel, Power Bi, Macros, VBA, Power Query. Join my FREE Excel VBA Course at https://t.co/x1nyGFHApB
MyExcelOnline.com @myexcelonline
17K Followers 1K Following Microsoft MVP | Author | Excel & Office Online Course Creator | 🚀Free Excel & Office Resources here 👉https://t.co/EbHiDQAXvu | CEO at https://t.co/MFwBMS7NDa
Ken Puls, FCPA, FCMA @kpuls
7K Followers 290 Following President of Excelguru, founding partner of https://t.co/85mDjDxAlG, Excel trainer, Microsoft MVP since 2006 Bluesky: https://t.co/bslVOSHd0H