Group clients support requests in a table with eparate column per client

cosima

New Member
Joined
Apr 16, 2015
Messages
9
Please help in perhaps a easy problem, but difficult for me. My client requests are registered in a table :

Client ID ! Name ! Product ID ! Product Name ! Date ! Problem (a-z) ! Status !
22222 ! Jeff L. ! 1321 ! Nuxe ! 12-05-2015 ! c ! ? !
333 ! Jeff M. ! 1327 ! Naxe ! 14-05-2015 ! c ! Ok !
44412 ! Jeff N. ! 1312 ! Nixe ! 13-05-2015 ! c ! ? !
22222 ! Jeff L. ! 1320 ! Nyxe ! 16-05-2015 ! c ! ? !
333 ! Jeff M. ! 1327 ! Naxe ! 14-05-2015 ! c ! Ok !
44412 ! Jeff N. ! 1312 ! Nixe ! 13-05-2015 ! c ! ? !
22222 ! Jeff L. ! 1320 ! Nyxe ! 16-05-2015 ! c ! ? !

In my result table I want to get the rowid of each clients requests :

Client requests (rowId) to use with OFFSET to list client requests :

! Jeff L. ! Jeff M. ! Jeff N. !
! 1 ! 2 ! 3 !
! 4 ! 5 ! 6 !
! 7 ! ! !

The client request table have from 200 rows to 1000 and I have tried Index formulas with no success.
Please help me in creating a formula on this !


Best regards

Cosima
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
How about creating a simple function in VBA

Put the following in an empty VBA module:
Code:
Function StripFirst(ClientString As Range, delm As String)
 x = ""
Strn = Split(ClientString, delm)
For i = 1 To UBound(Strn)
    x = x & Strn(i) & "!"
Next

StripFirst = Left(x, Len(x) - 1)

End Function


And then put in your cell something like this =StripFirst(A2,"!")

where the client information is in A2 and the string is delimited by "!"
 
Upvote 0
Sorry for bad table data :

Client ID Name Product ID Product Name Date Problem (a-z) Status
22222 Jeff L. 1321 Nuxe 12-05-2015 c ?
333 Jeff M. 1327 Naxe 14-05-2015 c Ok
44412 Jeff N. 1312 Nixe 13-05-2015 c ?
22222 Jeff L. 1320 Nyxe 16-05-2015 c ?
333 Jeff M. 1327 Naxe 14-05-2015 c Ok
44412 Jeff N. 1312 Nixe 13-05-2015 c ?
22222 Jeff L. 1320 Nyxe 16-05-2015 c ?
In my result table I want to get the rowid of each clients requests :
Client requests (rowId) to use with OFFSET to list client requests :
Jeff L. Jeff M. Jeff N.
123
456
7

<colgroup><col span="5"><col><col></colgroup><tbody>
</tbody>
Hope this looks a bit better !

Cosima
 
Upvote 0
Hi and thanks for your possible solution, but I have no programing experience so I hope to solve it with formulas.

Cosima
 
Upvote 0

Forum statistics

Threads
1,214,521
Messages
6,120,018
Members
448,937
Latest member
BeerMan23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top