Monday 26 September 2016

How Can You Fix - Cut first 5 characters in column?

Cut first 5 characters in column

Fellow sufferers!

I have a column containing text bits (of max 12 characters) like "#001 Toolbit".
I want to get rid of the first 5, so I get like "Toolbit". 

My code which does not function:

    Range("D5").Select
    While Not IsEmpty(ActiveCell)
 
             ActiveCell.Value =  MID(ActiveCell.Value, 5, 99)
             ActiveCell.Offset(1, 0).Select
    Wend

Please propose code that works.

Anwsers to the Problem Cut first 5 characters in column

Download SmartPCFixer to Fix It (Free)

It does work, but it only cuts 4 characters.
This will cut 5, from D5 downward until the first blank cell

    Range("D5").Select
    While Not IsEmpty(ActiveCell)
        ActiveCell.Value = Mid(ActiveCell.Value, 6, 99)
        ActiveCell.Offset(1, 0).Select
    Wend

But this makes sure that there are at least 6 characters in every cell being processed:

    Dim rngC As Range
    For Each rngC In Range(Range("D5"), Cells(Rows.Count, "D").End(xlUp))
        If Len(rngC.Value) > 5 Then rngC.Value = Mid(rngC.Value, 6, Len(rngC.Value) - 5)
    Next rngC

To check for Windows updates

  1. Open Windows Update by clicking the Start button Picture of the Start button, clicking All Programs, and then clicking Windows Update.
  2. In the left pane, click Check for updates, and then wait while Windows looks for the latest updates for your computer.
  3. If any updates are found, click Install updates. Administrator permission required If you are prompted for an administrator password or confirmation, type the password or provide confirmation.

Recommended Method to Repair the Problem: Cut first 5 characters in column:

How to Fix Cut first 5 characters in column with SmartPCFixer?

1. Click the button to download Error Fixer . Install it on your computer.  Run it, and it will scan your system. The errors will be shown in the scan result.

2. After the scan is done, you can see the errors and problems which need to be fixed.

3. The Repair part is done, the speed of your computer will be much higher than before and the errors have been removed. You can also use other functions in this software. Like dll downloading, junk file cleaning and print spooler error repair.


Related: How to Update & Download NVidia GeForce 6100/nForce 420 WHQL Certified driver v.178.13,How to Update & Download NVidia GeForce 7600 GS Video Driver v.295.75 Certified,How Can I Update & Download NVidia GeForce 820M Driver v.344.48 WHQL,[Solved] Download NVidia GeForce GTX 560M VGA Driver v.296.17 Certified,Way to Update & Herunterladen NVidia GeForce GT 130M Video Treiber v.295.75 Certified,How to Update & Download SONY SVE14A1X1RH Realtek Ethernet Driver,Where to Download SONY SVS13A2W9ES Bluetooth Driver (Intel) v.2.6 - 2.6.23.40059,Best Way to Update & Download SONY VGN-CR203E Conexant HDAUDIO SoftV92 Data Fax Modem with SmartCP Setup Program v.7.62.0.50 driver,Best Way to Download SONY VGN-FE790G/N Wireless LAN Driver v.10.6.0.29,Method to Update & Download SONY VGN-NR31Z/S Firmware Extension Parser Device v.8.0.2.3,How to Fix Error 0x0000c1f5 SoluciĆ³n?,Error 0x80071a91 Win7 Fix Patch,Error 0x800ccc60 Windows Live Mail [Solved],Error Message 0x800ccc79 Outlook 2000 Fix,What is Error 0xc1ab0001?,[Answered] x64 saplugin dll,How to Fix Problem - Kb943729 Download?,Troubleshooting: Bccode D1 Error,Java Runtime Tech Support,Troubleshooting: ERROR NO SUCH GROUP Error
Read More: How to Fix - cursor unresponsive after startup?,How to Fix Error - Day of the week 90 days from now?,How to Resolve - Dell computer newly upgraded to windows 7 / 32 from XP freezes up for 30-50 seconds while browsing?,Fast Solution to Problem: Delay in Window 7 shutdown,How Can I Fix - Customize MSN Homepage??

No comments:

Post a Comment