Place Cell Value Into Function
Jan 6, 2012
I need to place cell value into one function (I cannot modify this function it is built in) .
For example:
Function is
CODE
A2=KGF
=ABCDFE_(my value of A2 thus KGF)_GHIJKL
Thus the end result:
=ABCDFE_KGF_GHIJKL
I can concatenate the string but I cannot evaluate it .
=CONCATENATE("ABCDFE_",A2,"_GHIJKL")
is there a way to do it ?
View 4 Replies
ADVERTISEMENT
Oct 15, 2013
I have a spreadsheet that has filters in it. I want to randomly select one of the lines that is still visible.
View 3 Replies
View Related
Nov 17, 2011
I have a spreadsheet which connects to a SQL Server and updates a data set.
Is there a way to place a function or a formula I can use to show when the data set was last updated?
View 6 Replies
View Related
Mar 5, 2009
I know that VBA doesn't always slim down workbook size and calculations are calculations whether in VBA or Formula format; but in this instance, do you think VBA would be a better choice? This workbook is currently enormous in size and slow, and I think I can slim it down if I used the right VBA procedures. However, Im not certain what those procedures would be.
On two seperate worksheets in a workbook, I have a column that contains a formula that references a third sheet.
Sheet 1 = "Order"
Sheet 2 = "Turn-in"
Sheet 3 = "Bank"
Ok, here's the scenario: On the "Order" sheet, I have a list of orders from my company; on the "turn-In" sheet, a list of turn-ins. The "Bank" sheet lists ALL transactions (ORDER AND TURN-IN).
On both the turn-in and Order sheets, the formula is pretty much the same; it references a different column on the bank sheet, but does it the exact same way. Ok... The Order sheet lists all order from the company by order number (column A); the formula uses that order number and finds the transaction on the "Bank" sheet and returns the order cost as the result. however, the order numbers on the bank sheet have a 5 digit prefix on them (the prefix is the same on all orders, its used by the bank but only orders with my 5 digit prefix are on the list sent to me and pasted to this sheet. So all orders on bank sheet have the same prefix)
The below formula is in Cell C10 on "Order" Sheet; Column C lists the Cost reported by the bank. The formula below references the Bank sheet database, looks for an order number that matches the order number in A10 (Adding the prefix of course), and returns a cooresponding cost for that transaction.
=IF(ISBLANK(A10),"",IF(COUNTIF(BANK!$A$4:$W$10001,("ECGGT"&A10))>1,"",SUMIF(BANK!$A$4:$W$10001,"ECGGT"&$A10,BANK!$F$4)))
I know this seems long for what it is, but it has to add the prefix, and then match the order number, and reference the cooresponding cost.
The kicker, this forumla is in more than 10,000 cells; 6,000 on the order sheet, and 5,000 on the turn-in sheet. Of course the references are a little different, but the principle is the same for all of them.
Is there a way to do this in VBA to save space and resources? This formula is really dragging.
View 9 Replies
View Related
Feb 17, 2010
Any function in Excel, that would allow me to have a unit cost price (for example: 0.5432) and then for a table of figures containing the pack sizes to determine the correct unit price that would allow all pack costs to be at 2 decimal places. I have included an example below:
My spreadsheet would look like the following:
Cell A1 (Unit Cost Price) = .5814
Cell A3 (Pack of 75 units) = .5814*75 = 43.605
Cell A4 (Pack of 80 units) = .5814*80 = 46.512
Cell A5 (Pack of 100 units) = .5814*100 = 58.14
and so on
I need some way of making cell A1 change to a value that will cause all cells A3 to A5 to be 2 decimal places or less.
View 3 Replies
View Related
Feb 22, 2007
I am after a macro to do the following, my visual basic skills are very limited (non existant):- Look at the date in cell A1 on Sheet 'Live Report' and err 'remember it' Copy a range of cells from A3 to A10 on 'Live Report' Go to sheet 'Monthly Summary' and find the date that had been remembered previously (this date will be in column A on 'Monthly Summary' which will probably be a mixture of values and formulas). After the date has been found paste special and transpose the 'values only' copied range from 'Live Report' (A3 to A10) in column B on 'Monthly Summary' next to the date that has been found in Column A.
View 2 Replies
View Related
Oct 19, 2006
I have a macro that imputs data from an external database and puts it into a temporary worksheet. This data has 3 columns (ID, Date, Amount). I am then making another sheet which has X number of tables (one for each ID), with the years being the column headings, and months being the row headings. ie.
| ID X
| +------+------+------+--->
| | 1999 | 2000 | 2001 |
+------+------+------+------+--->
| Jan | $100 | $250 | $300 |
+------+------+------+------+--->
| Feb | $200 | $300 | $200 |
+------+------+------+------+--->
| Mar | $300 | $250 | $100 |
+------+------+------+------+--->
| Sum | $600 | $800 | $600 |
| +------+------+------+--->
| ID Y
| +------+------+------+--->
| | 1999 | 2000 | 2001 |
+------+------+------+------+--->
| Jan | $100 | $250 | $300 |
+------+------+------+------+--->
| Feb | $200 | $300 | $200 |
+------+------+------+------+--->
| Mar | $300 | $250 | $100 |
+------+------+------+------+--->
| Sum | $600 | $800 | $600 |
| +------+------+------+--->
Currently I have a few hidden fields for the DSUM Criteria. I start making the tables. And then filling in table based off of the month and year. Doing so I need 3 criteria:
>= First Day of the Month
<= Last Day of the Month
= ID #
The problem is it takes Excel too long to fill in the 3 criteria fields, calculate the result, copy the result, and place it into the correct place on the table. Is there another way to get this data into the correct tables faster? Instead of using DSUM?
View 8 Replies
View Related
May 7, 2014
How do I do this?
View 3 Replies
View Related
Oct 8, 2007
Is it possible to place Text in a Cell if a CF is True?
So Far I am unsuccessful.
I have this CF in Column S
=IF(ISBLANK(R10346),"Need Dept & Cat")
View 9 Replies
View Related
Apr 9, 2008
Not using VBA is there a way to take the worksheet name and place it in a cell?
View 9 Replies
View Related
Aug 6, 2008
I use Excel 2002 - I have a column with Text in its cells. The cells usually range from 30 to 130 characters including spaces. I need to use word wrap.
I would like to be able to see where the 55th character is ( Including spaces ) - but I also need to see the rest of the contents of the text in the cell.
I have thought about coloring the first 55 character/spaces ?
or inserting a character at space 56 ? Example below
XXXX XXX XXX
XX XXXXX XXX
XX XXXX XXXX
XXXX XXX XXX
XXX XX~XXX X
XXXX XX
View 9 Replies
View Related
Jul 27, 2006
I was wondering if anyone knows code that will check to see if there is a certain value in a cell, and if there is place a "1" in another cell in that row.
View 2 Replies
View Related
Feb 8, 2014
I am wanting to put a "1" in ROW 2, starting with COLUMN B until the sum reaches the value in cell A3.
Example: I have 10 in A3, I would like the macro to place a "1" in B2-K2.
View 2 Replies
View Related
Mar 13, 2014
I would like to be able to add one decimal place to each cell in my range.
Example:
111.111 becomes 111.1110
22.22 becomes 22.220
3.3 becomes 3.30
There are no standards here, I just want to be able to add that last decimal place. I need cells to remain in "Number" format also.
View 1 Replies
View Related
Oct 22, 2007
Place the actual date in a cell. Here is my code
View 2 Replies
View Related
Jun 8, 2007
If a cell is blank, what is the formula that can be used to place a 0 in that spot if the spot is empty. Also, what is the formula to leave a spot blank if no data can be pulled for its formula (to get rid of a #DIV/0! error).
View 9 Replies
View Related
Mar 30, 2008
My userform has text that corresponds to my spreadsheet header. I would like to replace the text with a textbox so my headers are variable. code that will allow me to enter my text so when I click enter
View 9 Replies
View Related
Jul 9, 2008
Upon user making selection from data validation list in Active Row Selection & Column A : i would like to do the following (is possible)
,,,,,,,,,,,,,,,
Place formula in Active Cell Row & Column S
=MT4|BID! (followed by cell A1 but replace the "/" with "") followed by "m"
I have tried several combinations but with no success.
Also - where would i place this code so that it automatically updates the formula in Column S as soon as the user changes selection in Cell A?
View 9 Replies
View Related
Jul 24, 2009
Is someone knows how to place the mouse’s pointer at specific location on the worksheet, at the end of macro run?
I would like to add VBA code in macro of a Commad Button, that can do that.
View 9 Replies
View Related
Jan 9, 2010
I have the following
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("A2:A100")) Is Nothing Then
With Target(1, 2)
.Value = Date
.EntireColumn.AutoFit
End With
End If
End Sub
I just want the date to appear in cell H6 autmatically and the time to appear in H7.
View 9 Replies
View Related
Sep 21, 2009
I need a macro that will place the number "1" in a range under the cell with a value of any kind. If the cell does not have a value then the cells below will be left blank.
View 9 Replies
View Related
Oct 6, 2013
I need a formula that will place the numbers in cell A into the cells in B C and D. The formula cannot be an array because for some reason my mac is very stubborn about arrays and I can't do them. If possible I would like each individual number to appear no more than once. That's why 4 and 3 only appear once.
It would also be nice if you could order them from smallest to greatest but if you can only do that with arrays then I suppose I can just get the same result with more clicks of the button.
View 6 Replies
View Related
Jan 19, 2014
how put picture into cell as background. it means, after it's done, if i click on cell, i must be able write into cell like before change. i dont want solution through comments or shapes because picture will be on top of cell. and not as background
View 7 Replies
View Related
Apr 30, 2014
how do I extract dates that a person is absent in a month and place the dates in a single separate cell?
View 1 Replies
View Related
Mar 25, 2014
I am trying to found or create a formula that will display cell width to the decimal place.
I can use the formula Cell("width"), but it rounds to the nearest integer. I need to display the decimals. For instance, if the actual column width is 8.43, the Cell("Width") formula will display 8. I need it to show 8.43.
View 3 Replies
View Related
Apr 10, 2009
I would like to sum Column BD and place the results in the first empty Cell in Collumn AZ. Then delete Columm BD.
View 2 Replies
View Related
Dec 21, 2009
What I would like to do is if a string e.g. "*12/18/09*" is found in column A, then place "1" in column B. There are many rows that I would like to search. Either a formula or VBA would be fine.
View 6 Replies
View Related
Oct 6, 2011
I have this loop, I get a range of specific cells and then I loop over this collection searching for a value, if this value exist I wanted to move one place to the right and then set a value on that cell, but for some reason when I put this offser(0,1) parameter, the loop became infinite, not sure why the code is doing this:
Code:
For Each c In Worksheets("Parameters").Range("A3:AR3").Cells
adress_start = ""
adress_letter = ""
[Code].....
View 2 Replies
View Related
Feb 27, 2012
How to get the contents of the currently highlighted cell into a variable and how to place it elsewhere. They suggested this....
Sub CurrentCell()
Dim CurrentCellText As String
Dim CurrentCellString As String
CurrentCellString = CStr(ActiveCell.Value)
'.......
'.......
Range("G16").Value = CurrentCellString
End Sub
My question now is - If the cell contains a runnable Dos comand, how do is send it to a Command window. (E.g. netsh interface ip address local static 192.168.0.1.255.255.255.0) (this sets your NIC's ip address).
View 5 Replies
View Related
May 30, 2014
My goal on the form is simply that when you click the check-box, it will highlight the cell green and place the date in the cell comment, and then clear the comment and color when unchecked.
I have been successful with the exception that I can only place text in the comment, but not a date stamp or even a reference to a hidden cell. I accomplished a date stamp command on a button with "Sheets("Sheet1").Range("Q5").Value = Date" but am unable to do this in a comment.
Below is what I have currently. I know it is not clean to look at, but that is how I found it and didn't want to create more variables for troubleshooting
Private Sub CheckBox1_Change()
Sheets("Sheet1").Range("Q4").ClearComments
Sheets("Sheet1").Range("Q4").Interior.Color = RGB(255, 255, 255)
[Code]....
I came across a couple results that seemed promising, but the code seemed to have a different syntax and I couldn't make it work with my VBA newbie skill level (started yesterday).
View 4 Replies
View Related