Add suffix in excel for conditional list [closed] - excel

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to add suffix ')' in all the cells in excel which are in '(XXX' format.
Example:
Data: (1123 (212 254 123 (124 (12
desired: (1123) (212) 254 123 (124) (12)
Thanks,
Srinivas K.

Create a row or column next to your data, depending on how it's laid out, and use:
=IF(AND(LEFT(A1,1) = "(", RIGHT(A1,1) <> ")"),CONCAT(A1,")"),A1)
Where A1 is your first cell of data you wish to manipulate, then drag down or across for all valid cells.

Related

Calculating Stock [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 days ago.
Improve this question
Looking for an automated process:
We have multiple cable drums in 'stock',
The cable is then cut into lengths and recorded using the batch number from the relevant drum.
I want to create a 'remaining QTY' amount as each individual cut cable entry is entered into a spreadsheet.
enter image description here
Text: Remaining QTY = QTY - Used (where first column header = first column)
Excel: F2 = E2 - SUMIF(A10, A2, C10)

Count Data from Excel when one cell had array data [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have some data in excel and i want to count of data, as simple as that..
I'm using countif/countifs but return number was wrong..
I want to return count of data from B3:B10 and the criteria is C3
Here's data :photo
To count the number of cells that contain at least one instance of 111111 use:
=COUNTIF(B3:B10,"*" & C3 & "*")
To count the number of times 111111 occurs, use:
=(LEN(TEXTJOIN(",",TRUE,SUBSTITUTE(B3:B10," ","")))-LEN(SUBSTITUTE(TEXTJOIN(",",TRUE,SUBSTITUTE(B3:B10," ","")),C3,"")))/LEN(C3)

Trim something from a cell with multiple data [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to seek your expertise in getting this task done.
All information are actually in one cell so i need to extract those information to their corresponding cells.
I appreciate the help
Assuming your first "data" cell is in A3, here are the formulas I came up with that you can copy down each column.
Column B:
=MID(A3,SEARCH("Name: ",A3)+LEN("Name: "),SEARCH("Email:",A3)-(SEARCH("Name: ",A3)+LEN("Name: ")))
Column C:
=MID(A3,SEARCH("Email: ",A3)+LEN("Email: "),SEARCH("Name:",A3,SEARCH("Name:",A3)+1)-(SEARCH("Email: ",A3)+LEN("Email: ")))
Column D:
=MID(A3,SEARCH("Name: ",A3,SEARCH("Name: ",A3)+1)+LEN("Name: "),SEARCH("Email: ",A3,SEARCH("Email: ",A3)+1)-(SEARCH("Name: ",A3,SEARCH("Name: ",A3)+1)+LEN("Name: ")))
Column E:
=RIGHT(A3,LEN(A3)-SEARCH("Email: ",A3,SEARCH("Email: ",A3)+1)-LEN("Email: ")+1)
PS: When I see the word "referee" I assume a person officiating sports :P

Excel Number Separation [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
Need help on make excel number format to a list of numbers.
For example:
1-3
to become below on different rows.
1
2
3
If anyone could help
A solution with a formula only:
We assume that A1=1-3. Fill the following formula into A2 and copy it down.
=IF(A1<>"",IF(ISNUMBER(A1),IF(A1+1<=VALUE(RIGHT(A$1,LEN(A$1)-FIND("-",A$1))),A1+1,""),VALUE(LEFT(A$1,FIND("-",A$1)-1))),"")
The result will be
1
2
3
This works for any numbers devided by -.

How to delete the columns except the first three columns? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a worksheet where after all the operations are done I want to clear all the contents except in first three columns (A, B, C).
Is it possible to achieve using VBA?
To remove formula and values use:
Range("D:XFD").ClearContents
To remove formula, values and formatting, use:
Range("D:XFD").Clear

Resources