Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 12-02-2024, 10:23 PM
arthurz11 arthurz11 is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2013
Novice
Please help with FILTER formula
 
Join Date: Dec 2017
Posts: 11
arthurz11 is on a distinguished road
Default Please help with FILTER formula

I’ve been working on this for months and yet not one person from the following paying and help Excel forums have not come up with a solution. I was even scammed by two paying help websites. The following that had helped: (1) Mrexcel.com, (2) Excel Help Forum, (3) Paperial.com, (4) Chandoo.org, (5) Excelguru.ca Forums, (6) TutorBin.com, (7) Mrexcel.com from Consultants Services feature and (8) Nerdifyit.com. Some came up with solutions using Excel 365 and Excel Version 2024 but not for Excel version 2021 which I am utilizing. Please help. Anyone!?!?!?!? This is my first time asking (8) msofficeforums.com. This makes my eighth website/forum for help.


Please note: The FILTER formula in cell N2 was created by JamesCanale, Well-known Member of Mr.Excel.com but haven’t heard from him for a while.
See attached Excel File.
Attached Files
File Type: xlsx SAMPLE.xlsx (12.1 KB, 4 views)
Reply With Quote
  #2  
Old 12-03-2024, 12:12 AM
Pecoflyer's Avatar
Pecoflyer Pecoflyer is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2021
Expert
 
Join Date: Nov 2011
Location: Brussels Belgium
Posts: 2,920
Pecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond repute
Default

Cross-posting is not forbidden but forum courtesy requires that you post a link to ALL threads in other forum. Read A message to forum cross posters - Excelguru to understand why. Thanks
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post
Reply With Quote
  #3  
Old 12-03-2024, 01:37 AM
arthurz11 arthurz11 is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2013
Novice
Please help with FILTER formula
 
Join Date: Dec 2017
Posts: 11
arthurz11 is on a distinguished road
Default Links

Hi!

I wrote the .com or .ca or .org on the tread. I thought that was the links. Unless you mean change the text to blue color to indicate it is linked but I know that will not work by changing the color text to blue. So how do you make it a link so ???

Arthur.
Reply With Quote
  #4  
Old 12-03-2024, 08:00 AM
Pecoflyer's Avatar
Pecoflyer Pecoflyer is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2021
Expert
 
Join Date: Nov 2011
Location: Brussels Belgium
Posts: 2,920
Pecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond repute
Default

Open your thread in each forum, copy the link (URL) and post it here.
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post
Reply With Quote
  #5  
Old 12-04-2024, 03:33 AM
kvsrinivasamurthy kvsrinivasamurthy is offline Please help with FILTER formula Windows XP Please help with FILTER formula Office 2007
Novice
 
Join Date: Oct 2017
Posts: 12
kvsrinivasamurthy is on a distinguished road
Default

The VBA code is ok or you need formula only.
Reply With Quote
  #6  
Old 12-04-2024, 07:20 AM
kvsrinivasamurthy kvsrinivasamurthy is offline Please help with FILTER formula Windows XP Please help with FILTER formula Office 2007
Novice
 
Join Date: Oct 2017
Posts: 12
kvsrinivasamurthy is on a distinguished road
Default

In N2 copied uptoV4
=GetCoordinates($A2:$J2,$M2,COLUMNS($N2:N2))

Here is the code for UDF.
Code:
Function GetCoordinates(Ip As Range, cri As String, Ind As Integer)

Dim Tc&, Td&, clms&, S$, Y&
Dim M
With CreateObject("Scripting.dictionary")
clms = Ip.Columns.Count
If clms < 2 Or clms Mod 2 <> 0 Then Exit Function
ReDim R(1 To clms)
    For Tc = 1 To clms Step 2
    S = Ip.Cells(1, Tc) & "," & Ip.Cells(1, Tc + 1)
    If S <> "," And S <> "" Then
       If cri = "Unique" Then
            If Not .exists(S) Then
            .Item(S) = "Y"
            End If
       ElseIf cri = "Duplicates" Then
            If .exists(S) Then
            .Item(S) = "Y"
            Else
            .Item(S) = "N"
            End If
       ElseIf cri = "Non Duplicates" Then
            If .exists(S) Then
            .Item(S) = "N"
            Else
            .Item(S) = "Y"
            End If
        End If
    S = ""
    End If
    Next Tc
    
    For Td = 0 To .Count - 1
    If .items()(Td) = "Y" Then
    ReDim Preserve R(1 To Y + 2)
    M = Split(.keys()(Td), ",")
    R(Y + 1) = M(0): R(Y + 2) = M(1): M = ""
    Y = Y + 2
    End If
    Next Td

End With
If Y >= Ind Then
GetCoordinates = R(Ind)
Else
GetCoordinates = ""
End If
End Function
How to Use UDF code:
In the developer tab click--> Visual Basic
VB window opens
Insert--> Module
Paste the code.
Close the VB window.
Now UDF is available in Function List
This function can be used like other functions in excel.
Save file as .xlsm
Attached Files
File Type: xlsm SAMPLE (77) exlforumans.xlsm (28.4 KB, 3 views)
Reply With Quote
  #7  
Old 12-06-2024, 01:34 AM
arthurz11 arthurz11 is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2013
Novice
Please help with FILTER formula
 
Join Date: Dec 2017
Posts: 11
arthurz11 is on a distinguished road
Default

Thank you sooo much for your effort. However, I do not know VBA codes on Excel. I had cross posted and I was told to show the links from the previous threads. So it is the utlmost importantance that I utilize a FILTER formula. So here are the following links to other threads...

Excelguru.ca:
How do I write the FILTER formula to do the opposite in Cell L2? | Excelguru Forums

Chandoo.org
How do I do the opposite of FILTER formula in Cell L2? | Chandoo.org Excel Forums - Become Awesome in Excel

MrExcel.com:
Please help with FILTER Formula. | MrExcel Message Board

Msofficeforums.com:
https://www.msofficeforums.com/excel...tml#post184219

Paid website my.paperial.com (Unable to write a solution):
Add Your Task Details - Paperial.com

Paid website student.tutorbin.com (Unable to write a solution):
Student Dashboard

Paid website Nerdifyit.com (Unable to write a solution):
Nerdify | #1 Learning Help for College Students

Pay MrExcel.com consultant services (Brian Field email a FILTER formula and he told me that I didnÂ’t have to pay. But I email back to show the errors on the formula but he never reply by email:
Consulting Services - MrExcel Publishing
Reply With Quote
  #8  
Old 12-07-2024, 12:52 AM
Pecoflyer's Avatar
Pecoflyer Pecoflyer is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2021
Expert
 
Join Date: Nov 2011
Location: Brussels Belgium
Posts: 2,920
Pecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond repute
Default

Your thread at How do I write the FILTER formula to do the opposite in Cell L2? | Page 2 | Excelguru Forums seems to be progressing fine, you are getting lots of (most patient) help from Ali. Your last reply there dates from yesterday,and I am certain she will work on it.So why start a thread in the nth forum?
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post
Reply With Quote
  #9  
Old 12-16-2024, 06:52 PM
arthurz11 arthurz11 is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2013
Novice
Please help with FILTER formula
 
Join Date: Dec 2017
Posts: 11
arthurz11 is on a distinguished road
Default

SOLUTION: By djc dated 12/16/2024. Page 1 - Post #24 and Page 2 - Post #27 from Chandoo.org.

LINK:
​https://chandoo.org/forum/threads/how-do-i-do-the-opposite-of-filter-formula-in-cell-l2.57834/
Reply With Quote
  #10  
Old 12-17-2024, 12:51 AM
Pecoflyer's Avatar
Pecoflyer Pecoflyer is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2021
Expert
 
Join Date: Nov 2011
Location: Brussels Belgium
Posts: 2,920
Pecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond repute
Default

Thanks for the heads up. Please mark this thread as solved. Thx
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post
Reply With Quote
  #11  
Old 12-17-2024, 04:45 AM
arthurz11 arthurz11 is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2013
Novice
Please help with FILTER formula
 
Join Date: Dec 2017
Posts: 11
arthurz11 is on a distinguished road
Default

Quote:
Originally Posted by Pecoflyer View Post
Thanks for the heads up. Please mark this thread as solved. Thx
Where do I click to say problem is solved?
Reply With Quote
  #12  
Old 12-17-2024, 08:10 AM
Pecoflyer's Avatar
Pecoflyer Pecoflyer is offline Please help with FILTER formula Windows 10 Please help with FILTER formula Office 2021
Expert
 
Join Date: Nov 2011
Location: Brussels Belgium
Posts: 2,920
Pecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond reputePecoflyer has a reputation beyond repute
Default

See "thread tools"
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Please help with FILTER formula Filter or Lookup Formula to Organize Keywords MKTGCLOUD Excel 8 11-28-2018 07:35 PM
Please help with FILTER formula VBA Filter SavGDK Excel Programming 2 10-14-2016 11:37 AM
Please help with FILTER formula Possible to use an existing vlookup formula to also insert correct info and trigger a SUM formula innkeeper9 Excel 2 09-13-2016 08:59 PM
Please help with FILTER formula Filter Mail Merge based on a list of filter criteria AusSteelMan Mail Merge 2 05-09-2016 03:35 PM
Formula for filter "Incomplete Tasks for User..." patrickd123 Project 1 04-07-2015 08:15 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 03:45 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft