CHAR Function

Relevant answer

Chris Botha 1 year ago

Select all data in original data then Home Find/Replace. In find box type - and in replace bos leave open. Remember the Pivot table does not count the word Answered, it counts how many cells under Answered column has something in it. The - is seen as “something”. Therefore all columns give same answer. Once you have done the replace right click the pivot table and select Refresh. Let me know if it solved the problem.

2 Likes

Relevant answer

Mayukh Bhattacharya 1 year ago

Hálózsákok Tipegő can you post the google sheet links in the following comments, so that i can try to help you with a solution, but before moving to that, may i know have you copied the email from some website or any external sources or directly from your contacts list, if so then it is probably not working because of non printable characters.

Can you try this once and let me know, otherwise you post the google sheet link in the following comments.

=SPLIT(A1,","&CHAR(10))

0 Likes

Relevant answer

Kent Paulsson 1 year ago

Set up a Lookup Table with All Trucks and Matching Plates in 2 Separate Columns . Use: . ✧ INDEX and MATCH ✧ VLOOKUP ✧ XLOOKUP

. ✧ INDEX and MATCH . ✧ VLOOKUP . ✧ XLOOKUP (not working with older Excel versions) https://exceljet.net/articles/index-and-match https://exceljet.net/functions/vlookup-function https://exceljet.net/functions/xlookup-function

1 Like

Relevant answer

Abdul Raheem Ghani 1 year ago

Follow these steps:

1 - Filter the 1st table by right clicking on the red cell and filter by color. 2 - Once filtered, copy the entire filtered rows from 1st table 3 - Paste the copied rows in the 2nd table 4 - Select all values in the "Quantity" column in the 2nd table and sort smallest to largest and select Expand Selection.

1 Like

Relevant answer

Kent Paulsson 1 year ago

Only 2x Row with an Email addresses or ? . Row: 113 & 131 . No idea how the other Email addresses are placed... . For Row 131: . =MID(D50,FIND(CHAR(160),SUBSTITUTE(D50,CHAR(10),CHAR(160),LEN(D50)-LEN(SUBSTITUTE(D50,CHAR(10),""))))+1,LEN(D50)-FIND(CHAR(160),SUBSTITUTE(D50,CHAR(10),CHAR(160),LEN(D50)-LEN(SUBSTITUTE(D50,CHAR(10),"")))))

1 Like

Relevant answer

Mayukh Bhattacharya 1 year ago

Brian Matthiesen you can use either of the formulas as shown in the screenshot below,

• Formula used in cell A3

=INT((ROW()-3)/3)+1&CHAR(64+MOD((ROW()-3),3)+1)

• Formula used in cell B3

=INT((SEQUENCE(1000,,1,1)-1)/3)+1&CHAR(64+MOD((SEQUENCE(1000,,1,1)-1),3)+1)

• Formula used in cell C3

=LET(x,SEQUENCE(1000,,1,1)-1,INT((x)/3)+1&CHAR(64+MOD((x),3)+1))

1 Like

Relevant answer

Will Taylor 1 year ago

try:

I22=COUNTIFS(D22:H22,UNICHAR(10003))

J22=IF(I22=5,"✓","")

K22=IF(I22<>5,"✓","")

B29=IFERROR(INDEX($C$22:$C$26,AGGREGATE(15,6,(ROW($J$22:$J$26)-ROW($J$22)+1)/($J$22:$J$26=UNICHAR(10003)),ROWS(B$28:B28))),"")

C29=IFERROR(INDEX($C$22:$C$26,AGGREGATE(15,6,(ROW($K$22:$K$26)-ROW($K$22)+1)/($K$22:$K$26=UNICHAR(10003)),ROWS(C$28:C28))),"")

D29=TEXTJOIN(",",1,REPT($D$21:$H$21,INDEX($D$22:$H$26,MATCH($C29,$C$22:$C$26,0),0)<>UNICHAR(10003)))

2 Likes

Relevant answer

Erik Guzik 1 year ago

YES - don't use check boxes use Wingdings char 168 & 254 then use a simple VBA macro to swap the char when the cell is clicked. This works much better especially if you are going to be using hundreds or thousands of checkboxes, doesn't slow excel to a crawl then.

2 Likes

Relevant answer

Samir Shaker 1 year ago

Syed Salim Javeed RegEx solution...VBA function [write the code in Module]

Function RemoveChar(s As String) As String Dim RX As Object If RX Is Nothing Then Set RX = CreateObject("VBScript.RegExp") RX.Global = True End If RX.Pattern = "[^a-zA-Z0-9]" RemoveChar = RX.Replace(s, "") End Function

3 Likes

Hot network questions