Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default Combinations in a string of data

Is there a function / formula I can use to determine how many combinations a
string of data can return the same value?
For example:
10
15
20
5
There are 2 ways the above data can return the value 25.

Many thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9,101
Default Combinations in a string of data

Requires a macro. How big is your table?

"Eán" wrote:

Is there a function / formula I can use to determine how many combinations a
string of data can return the same value?
For example:
10
15
20
5
There are 2 ways the above data can return the value 25.

Many thanks

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default Combinations in a string of data

50 lines

"Joel" wrote:

Requires a macro. How big is your table?

"Eán" wrote:

Is there a function / formula I can use to determine how many combinations a
string of data can return the same value?
For example:
10
15
20
5
There are 2 ways the above data can return the value 25.

Many thanks

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9,101
Default Combinations in a string of data

I had a similar macro that I needed to modify. I don't know how to input the
input numbers or how you want the results. Run this code and I will modify
as required

Public InStrings
Public combo
Public RowCount
Public ComboLen
Public NumbersMatch
Public Checktotal
Sub combinations()

Checktotal = 25
NumbersMatch = 0

InStrings = Array(10, 15, 20, 25)
Length = UBound(InStrings) + 1

Level = 1
RowCount = 1
For ComboLen = 1 To Length
ReDim combo(ComboLen)
Position = 0

Call recursive(Level, Position)
Next ComboLen
End Sub
Sub recursive(ByVal Level As Integer, ByVal Position As Integer)

Length = UBound(InStrings) + 1

For i = Position To (Length - 1)

'for combinations check if item already entered
found = False
For j = 0 To (Level - 2)
'combo is a count of the combinations,not the actual data
'123
'124
'125
'234
'235
'245
'345
'data is actually in InStrings
If combo(j) = i Then
found = True
Exit For
End If
Next j

If found = False Then
combo(Level - 1) = i
If Level = ComboLen Then
For j = 0 To (ComboLen - 1)
If j = 0 Then
ComboString = InStrings(combo(j))
Mytotal = Val(InStrings(combo(j)))
Else
ComboString = ComboString & "," & InStrings(combo(j))
Mytotal = Mytotal + Val(InStrings(combo(j)))
End If
Next j
Sheets("Sheet1").Range("A" & RowCount) = ComboString
Sheets("Sheet1").Range("B" & RowCount) = Mytotal
If Checktotal = Mytotal Then
NumbersMatch = NumbersMatch + 1
Sheets("Sheet1").Range("C" & RowCount) = NumbersMatch
End If
RowCount = RowCount + 1
Else
Call recursive(Level + 1, i)
End If
End If
Next i
End Sub




"Eán" wrote:

50 lines

"Joel" wrote:

Requires a macro. How big is your table?

"Eán" wrote:

Is there a function / formula I can use to determine how many combinations a
string of data can return the same value?
For example:
10
15
20
5
There are 2 ways the above data can return the value 25.

Many thanks

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 690
Default Combinations in a string of data

5,10,15,20....

Are you numbers in increments of 5?
5,10,15,20,25...250

Dana DeLouis



Eán wrote:
50 lines

"Joel" wrote:

Requires a macro. How big is your table?

"Eán" wrote:

Is there a function / formula I can use to determine how many combinations a
string of data can return the same value?
For example:
10
15
20
5
There are 2 ways the above data can return the value 25.

Many thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Getting Excel to Calculate All Combinations of a Set of Data? marello Excel Worksheet Functions 11 May 1st 23 03:42 AM
Help with a formula: Data Combinations Maureno Excel Discussion (Misc queries) 3 October 22nd 08 02:45 PM
Coming up with all possible combinations that add to a certain sumwithin a set of data Zarlot Excel Discussion (Misc queries) 1 December 20th 07 07:02 PM
I have 5 columns of data and want to create combinations based on Carbob Excel Discussion (Misc queries) 0 June 2nd 06 04:58 PM
to search for a string and affect data if it finds the string? Shwaman Excel Worksheet Functions 1 January 11th 06 12:56 AM


All times are GMT +1. The time now is 05:29 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"