left

  1. R

    Using SQL in VBA LEFT JOIN to fetch data from multiple sheet

    Hi Expert, I have three sheets of data using LEFT JOIN i am supposed to pull the required columns as result. This is the main motive. With the help of this link https://analystcave.com/excel-using-...on-excel-data/ i took the code which does connection to my excel sheets. I need an experts...
  2. H

    LEFT and IF to make up to 10 characters

    Hi in Column A, I have a mixture of 7 and 10 character long project numbers. In Column B I want to reference all project numbers to a uniform 10 character format. With the 7 characters ones I want to add “/04” to them. Can this be achieved with a LEFT and IF formula? Thanks
  3. X

    Trying to insert certain cells if another cell falls between two dates.

    https://1drv.ms/u/s!AmfNhO-qyFc5iSnpBImBa6_Ndu_U?e=U3dbXq Screenshot in the link above I'm trying to create a function so that the bills in the top left will auto-generate into the table for the different weeks. For example if a bill falls between the 1st-10th than i would like them...
  4. M

    How to highlight a cell only if value exist and leave if blank

    <style type="text/css">p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; color: #000000}</style>Highlight a cell if cell two rows on the left has x value. If blank do no highlight. Err how would i do this? Thanks, Matt
  5. C

    Hope someone can help, Ive almost done it, take a look.

    I just need help correlating the cells from excel into the highlighted fields in word, like the picture below. I copied the cell from excel and pasted it into word and it transferred the information when it was entered, but it left a space before and after the new input in word. Can you figure...
  6. J

    Scientific Notation Removes values when converting cell to Number

    Just recently I've run into this issue. Microsoft® Excel for Office 365 MSO (16.0.11328.20362) 32-bit I process data files that have very long alpha/numeric strings and when bringing into Excel, only certain rows display as 2.1E+61. When i change the cell to number format and no decimal, I...
  7. D

    Using If, Left and Or Functions

    Hello, I'm trying to get a formula with multiple conditions to work and am having a hard time. Basically: If A1 starts with "ABCD" OR "EFGH", put the value (say, $10) of B1 into cell C1. If A1 starts with anything else, put a zero in cell C1. I've tried combining If, Left and Or but I must be...
  8. M

    Vlookup, if no match search another sheet using first 7 characters

    Can someone help me with a formula; I’d like to run a Vlookup For values in column J against a column in another sheet. If nothing is found then Vlookup only using the first 7 characters in column J to a column in another sheet and only it’s first 7 characters. thanks,
  9. J

    Formula to convert Oz back into autosum and add to left of decimal place

    Help please, I have a fishing club workbook that I have to sit and work out in Lbs and Ounces. I have the format for cells as ustom 0" lb". 00" oz." Once autosum has been applied to a range it will give a total in LBs and Ounces but counts all of the ounces up. Is there a formula that anyone...
  10. S

    Vlookup after LEFT, TRIM and still receiving ERROR

    Good day new to this community. I've been trying to use the following formula to have data on the LEFT of the same CELL to clean it and use it to VLOOK up another sheet and brining in a code. Formula: = VLOOKUP(LEFT(H4,(FIND("V.",TRIM(SUBSTITUTE(H4,CHAR(160),CHAR(32))))-2)),'Vlookup...
  11. R

    How to download 52 week high and 52 week low

    Hi all, I am new to coding and programming and would appreciate any suggestions you can give me in creating my first real code. So here i want the solution of how to download the 52 week high and 52 week low of a particular company into excel using the vba code. That's really all I am...
  12. T

    formula needed!

    look for a formula for: Value of each cell in column C is either 0, 1, 2, 3, 4 or 5 depending on the vale of the column to it's left 0 = <20 1 = 20-40 2 = 41-82 3 = 83-144 4 = 145-207 5 = >207
  13. C

    Extract text to left of certain character - limited to certain number of characters

    I need to extract the number to the left of the "/" Data Example - B4: Innsbruck, University Hospital, (ads, peds), CIC 271, G. Gastl, D. Nachbaur (79 (82) 41/38) Desired result = 41 The number could be 1 to 3 characters, but any method of getting closer would help. I found an example on the...
  14. M

    Populating Cell Using Other Cell Data

    I am trying to populate a new column using number values from another, as seen bellow. The middle column is what the left column should look like, but with a formula. Here is the formula I have come up with for the left column: =IF(AND([@[Wattage (bulb)- Number Value Only]]<33,[@[Wattage...
  15. 3

    how to extract a website address(not hyperlink) from within a text using a formula

    I wonder if there is a way to extract a website address from within a text. noting that : 1- text field contains mix of email addresses and website address 2- email address can be before the website address or after it 3-some cells contain more than a mail address and a website address 4- there...
  16. T

    LEFT(A1,5) gives the same as LEFT(A2,5)

    Hello, I'm having issues with the LEFT workbook function. See below for the example with the formula of =LEFT(A2,4). A B <colgroup><col><col></colgroup><tbody> User Pedon ID 4 left characters S00CO6680033 S00C S00CO6680034 S00C S00KS055001-pit...
  17. D

    top vertical connector for active cell instead of left horizontal connector

    Hello all, Here is the code for any active cell to get left connector. 'left direction l = (ActiveCell.Offset(0, -1).Left) r = (ActiveCell.Offset(0, 0).Left) t = (ActiveCell.top + ActiveCell.Offset(1, 0).top) / 2 Set con =...
  18. J

    IF "THIS or THIS or THIS" then DOTHIS BUT IF "THIS or THIS or THIS" AND ALSO "THAT" then DOTHAT

    Sorry if the title is confusing, I think i might be going crazy by now haha. Trying to look at two columns of data and output accordingly. to simplify it lets say COLUMN A can have data input either (1,2,3) or any combination of them ie. 12, 123, 13, 23 COLUMN B can have data input (1, 2...
  19. A

    Scroll Left

    Application.Goto Reference:=Range("a1"), Scroll:=True I found this works, but can you not select the cell. Aim is to scroll to Home (left) in the Worksheet only. Thanks.
  20. JTL9161

    Left & find

    I am using this formula =LEFT(AI5,(FIND("*",(",AI5)-1)) to take the text from left to the asterisk which works fine (Text * gives me Text) Now I have text that looks like either of these: Text * (text..etc) Text (text..etc) How do I modify my formula to first find the * but if no asterisk...

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