Question

the real difference between isblank, isempty, "", and null

Asked by: rberke

Yesterday I thought I understood isblank, but I was wrong.

Today I am 100% sure I really really understand it which means I'm sure to be wrong again.

Will someone just check this out and see if there are any glaring errors?

When cutting peoples names from a web page and pasting into excel, the result often has blanks at the end of the text.
I always fix this up by trimming the names.

To illustrate this, type the following into these cells
  a1 John Doe
  a2 John Doe   (followed by 5 blanks)
  a3 (don't type anything, leave it blank)
  a4 x
  a5 x

  c1 = len(a1)
  copy c1 and paste in c1:d5
  e1 = IF(ISBLANK(A1),CELL("address",A1)&"ISBLANK","")
  copy e1 and paste in e1:f5
 
You will see that len(a2) is 13 because of the 5 blanks

I usually fix this by
   inserting =trim(a1) into cell b1,
   dragging b1 to b5
   copy b1:b5 to clipboard
   paste > special > values into a1:a5

I thought this was perfect, but (alas) i was wrong.

Notice that a3, which started out IS BLANK, is no longer blank.  
Also notice a3 still is length 0.
finally notice that selecting a1 then doing a ctrl down arrow does not stop at the first blank cell, because it is not really blank.

You can repeat this by selecting a3 and hitting the delete key on keyboard.

Question #1  can I fix this without resorting to vba?   (I tried =IF(ISBLANK(A3),"",TRIM(A3))) but the cut and paste didn't work.

Question #2 is there a way of telling Excel to automatically delete trailing blanks from every data entry, import, or cut and paste?

Question #3 I believe that worksheet function ISBLANK is 100% equivalent to vba function ISEMPTY.  In other words, Bill Gates simply misnamed it. Am I correct, or is there something subtle that I am missing?

Question #4 I believe that the following vba line accomplish exactly the same thing.  Am I missing something subtle?
mycell.formula = ""
mycell.formula = null

rberke

p.s. ------------------------------------------------


To fix this, I have resorted to the following, but i don't like it because it resets the Undo chain.  I use Undo a lot, especially when I am cutting and pasting this junk.

sub myChangeToValue()
  for each cl in selection.cells
  cl.value = rtrim(cl.value)
  next cl
end sub


This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2004-05-04 at 15:36:37ID20978027
Tags

excel

,

isblank

,

isempty

Topic

Microsoft Excel Spreadsheet Software

Participating Experts
4
Points
250
Comments
16

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. Can anybody improve this ' IsEmpty (range)' vba funct…
    If often wished I could easily check if an entire row is empty. I've seen lots of posts for that, but none of them worked if the range had cells which contained white space like tabs ascii 32 etc. I also want it to work pretty fast. This is the best I could come up...
  2. Jumping to cell A1 of another worksheet.
    I just did saving the workbook, Id like to jump to worksheet 'B' cell A1. How to code that in VBA....
  3. IsBlank Formula Construction
    Hello, What I am trying to do might be imposible in Excel, although it is worth a try. I am trying to set the value of cell A2 to "R" when the value of cell A1 changes from being blank to having a numeric value. Meaning that if the value of A1 would later change ...
  4. ActiveSheet.PageSetup.PrintArea = "A1:F10"...
    for "A1:M137", I want to enter this value using row and column numbers Col Row A1 1 1 F10 10 6 Could I write: ActiveSheet.PageSetup.PrintArea = Cells(1,1),Cells(10,6) Instead?
  5. Building a nested if(isblank) statment in VBA.
    I am trying to build a formula in VBA and am getting a "1004" error, application or object defined error. Here's the formula: ws2.Cells(r, c2) = "=IF(ISBLANK(" & ws2.Cells(r, c2 - 1).Address & "), '', IF(ISBLANK(" & ws2.Cells(cotW...
  6. VBA Code to hide rows in sheet if column A is not equal to t…
    I would like some VBA code which hides all the rows within a worksheet from Row 5, if the data held within Column A is not equal to the value entered into A1. So if A1 contains: Apple All rows after Row 4 which does not contain the word Apple will be hidden. Have been p...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: mdmackillopPosted on 2004-05-04 at 16:24:36ID: 10991878

Hi Rberke,
Question 2 - I know you're trying to avoid VBA, but how about the following worksheet function
MD

Private Sub Worksheet_Change(ByVal Target As Range)
    For Each acel In Target
    acel.FormulaR1C1 = RTrim(acel)
    Next
End Sub

 

by: sebastienmPosted on 2004-05-04 at 17:17:44ID: 10992064

Hi rberke,

Blanks are in fact <no value> while an empty string ("") is a value. Programmatically, with strings in vb, this is differentiated in two ways: vbNullString (no value) and vbEmptyString("").
Now functions (most of them i guess) don't return a no-value but an 'empty' value. Example with the Trim function: whether it is a no-value or a empty value, it returns a empty value. Same with right(), left(), ...

Qu1 - Replacing blanks (no-value) with empty value (""):
-Outside the data, in a cell, enter ="". Then Copy/PasteSpecial As Value over the same cell.
-Copy that cell
-Select the data (selection does NOT contains the above cell)
-menu Edit > Goto, button Special, select Blanks, click OK. All blanks are now selected
-do a Paste
All blanks are now empty.

Qu2 -  telling Excel to automatically delete trailing blanks from every data entry, import, or cut and paste?
Automatically, no. i don't think so.
But you can do it using the Edit > Replace. for Find, enter a space. Enter nothing for the Replace. Click ReplaceAll.

Qu3 - ISBLANK is 100% equivalent to vba function ISEMPTY
quickly, i would say yes... maybe some situations that don't apply, not sure, i would have to think more about the definitions.
Online Help says "IsEmpty...indicates whether a variable has been initialized."
"misnamed it"... i agree with you :-)   ...(see vbEmptyString and vbNullString earlier :-).

Qu4 - mycell.formula = ""  -- mycell.formula = null
I would say on one side you have a empty string and on the other side a null string. Now, they are different. However, in this case, it ends up being the same for Formula because when setting the formula, vb does the same than with the Trim function, it takes an inout (empty and null string) and transform (covert it) to fit Formula, and as with Trim it returns an empty string in both cases.

I am not completely 100% sure of what i say above, but that's the way i see it :-)

Regards,
Seb

 

by: stochasticPosted on 2004-05-04 at 18:13:31ID: 10992218

rberke,

Q#2 : Like Seb said, I don't think there is an automatic way to discard trailing blanks. His Edit/Replace suggestion
will work, but for ALL spaces, not only TRAILING ones.

I face this problem too. What I do is put a conditional format on the entire worksheet so that
cells with trailing blanks get hlighlighted. Doesn't do any fixing automatically, but at least shows
me which cells need attention.

Your vba looks like the best bet. To avoid disturbing the Undo chain, perhaps you can defer
running the sub as late as when you are ready to save the file?

- stochastic

 

by: sebastienmPosted on 2004-05-04 at 19:52:02ID: 10992574

>>> for ALL spaces, not only TRAILING ones
You are right, stochastic. I had forgotten to detail it is when there is no inside space.

Seb

 

by: YeklePosted on 2004-05-05 at 07:12:05ID: 10996219

Try this.

Do a replace (CTRL-H). For the Find what: enter 2 spaces. For the Replace with: enter pipe, comma or other delimiter. Select the entire dataset and go to Data>Text to Columns. Select Delimited then press Next. Click in the box to the right of Other: and enter your delimiting character, pipe, comma,..., into the box. Press Next. The data you wish to keep will be displayed in the far left column. Select each column to the right  and choose the Do not import (skip) option. Once all non-desired columns have been selected to be skipped, press Finish. This will work as long as there are more than 1 blank at the end.

 

by: rberkePosted on 2004-05-05 at 10:39:31ID: 10998207

I have done some more research and have come to the following conclusions.
* vbNullString is identical to "" (confirmed using watch in debugger that they are identical strings)
* Null is the same as  "" only if you are dealing with strings.  If you are dealing with variant's they are not the same.
* isblank is the same as isempty
* There is no such thing as vbEmptyString. You may have defined one with const vbEmptyString as "".
* there is no way to turn "" into empty without resorting to vba.
* the best way to RightTrim everything is
 sub myRtrim()      
    Dim hold As Range
    Set hold = Selection
    Cells(1, 1).Select
    Dim cl As Range
    ' ActiveSheet.Cells(1, 1).Select
    Selection.SpecialCells(xlCellTypeConstants, xlTextValues).Select
    For Each cl In Selection
    If Right(cl.Formula, 1) = " " Then
        cl.Value = RTrim(cl.Value)
    End If
   
    Next cl
    hold.Select
End sub
-----------------------------------------------------
Now, there is one more thing that perplexes me.  
   Dim c As Variant
   Dim v As Variant
   v = "test"
   Set c = Cells(1, 1)
   v = "a"
   c.Formula = "a"
   
   Stop  'stop #1
   v = 1
   c.Formula = 1
    Stop ' stop #2

At stop#1 both v and c.formula are type variant/string.
At stop#2 v is variant/integer, but c.formula remains variant/string.

Somehow I find this confusing, but I can't say exactly why.

Any comment?


------- comments are your posts


for mdmackillop:  too much overhead.  Usually I trim my data right after importing, and don't worry about it in the remaining hours that I work on the spreadsheet.

For  sebastienm
qu1 does not work on excel xp under xp pro.  Edit goto blank does not find len(0) cells that have "" in them.  It only finds ISBLANK cells.  PLUS, your helper cell is not ISBLANK.

You had that wrong.  vbNullString is "" and vbEmptyString does not exist unless you define it yourself.

  The following "proves" the vbNullString is ""
    MsgBox "It is " & Trim((IsEmpty(vbNullString) = IsEmpty("")) _
  And (IsNull(vbNullString) = IsNull(""))) _
  & " that vbNullString = '' "

Neither one of them ISNULL.

All the comments about edit replace are valid for Q#2 but a whole lot more work than I want.

 

by: mdmackillopPosted on 2004-05-05 at 16:10:06ID: 11000754

Hi Rberke,
I accept your commemts re the worksheet function, I wouldn't do it that way either.
Re your own code, there seem to be a few extra bits.  Try
    Dim hold As String
    hold = Selection.Address
    Selection.SpecialCells(xlCellTypeConstants, xlTextValues).Select
    For Each cl In Selection
        cl.Value = RTrim(cl)
    Next cl
    Range(hold).Select

Re c.formula = 1 being Variant/String, c.Value = 1 will give you Variant/Double
MD

ps  Maybe your initial query should have been entitled "Much ado about nothing"  :)

 

by: rberkePosted on 2004-05-05 at 17:40:22ID: 11001162

The extra bits are needed
Cells(1,1).select is in case the user starts with more than 1 cell selected.  Omitting it cause only his original selection to be rtrimmed whereas I want to whole sheet to be rtrimmed.

the if statement is to avoid doing unnecessary replaces.  Many of my spreadsheets have thousands of constants, so I only rtrim cells that have a trailing space. I haven't really tested that it makes things run faster, but I think right (x,1) is faster than rtrim(x).

Regarding my discomfort with the variant:  I alway thought that a variant took on the characteristics of whatever it was assigned.  So if myvariant = 1  results in variant/integer, why doesn't c.formula = 1 turn the formula into an integer?

and how could i have predicted that c.value = 1 would be a variant/double?  

and how could i have predicted that c.value = "ab" would give me variant/text
but c.value = "1" would give me variant/double?

Seems a little weird to me

By the way, your laugh line is worth more points that that the rest of the question.


 

by: sebastienmPosted on 2004-05-05 at 19:29:07ID: 11001711

Hi guys,

>>> vbNullString is identical to ""
   i don't agree. :-)
   The online help says: "vbNullString: String having value 0. Not the same as a zero-length string (""); used for calling external procedures".
   A vbNullString has a pointer pointing to zero-memory address while "" points to a non-zero memory address. (maybe vba does an implicit coersion in many cases).
   An excellent article on vb Strings: http://www.oreilly.com/catalog/win32api/chapter/ch06.html
     and it starts very well: "The subject of strings can be quite confusing"   :-)
   Finaly. all of this is about VBA. Now in Excel itself, there is an additional layer where a cell has a 'variant' value that can be a string, a double, ... or Null. ie I believe that the cell value (ie the variant) can be null (isblank), not the string.

>>> Null is the same as  "" only if you are dealing with strings
  ?? IsNull("") returns False
 The mistake we were doing with IsNull was to use it on something else than a VARIANT.
 Online help says: "IsNull(expression)" with expression being VARIANT. "The Null value indicates that the VARIANT contains no valid data. Null is not the same as Empty, which indicates that a variable has not yet been initialized. It is also not the same as a zero-length string (""), which is sometimes referred to as a null string."

>>> isblank(xl) is the same as isempty(vba)
i agree.

>>> There is no such thing as vbEmptyString
My mistake... i meant vbNullChar. You guessed right, it s a self defined one... i had forgotten its origin!!

>>> there is no way to turn "" into empty without resorting to vba.
i agree.

------------------------------------------
>>> c.formula Variant/String
I agree with MD. The cell.Formula property is a string by definition. Now, what you want to use is cell.Value which is a variant and it store the result of the evaluated formula.
-----------------------------------------
>>> qu1 does not work on excel xp under xp pro.  Edit goto blank does not find len(0) cells that have "" in them.  It only finds ISBLANK cells.  PLUS, your helper cell is not ISBLANK.
Exactly, that's what it is: it replaces IsBlank cells by "". But re-reading your post now, i understand you were trying to keep the isBlank cells as IsBlank. Sorry, my mistake.... again.

>>> The following "proves" the vbNullString is ""
No, because IsNull doesn't mean anything on a non-variant and IsNull doesn't check if a string points to zero-memory addr. See def of IsNull().

Well, now, i don't know anymore what was the main question of this post  & and i don't know anymore what makes sense and what doesn't -- so i think i am going to stop here. :-)
Anyway, that was interesting !!

Seb

 

by: rberkePosted on 2004-05-05 at 21:31:08ID: 11002345

WTMI!  My head hurts and my 100% really really sure understanding is now down to about 80% which is fine.

But, having been a system programmer in the distant past, I found it pretty interesting.  I really love experts exchange, where else could I find people willing to put up with this a nitpicking discussion of this depth?

So here is my latest summary, and I promise not to ask anything else for at least a day. Points are coming soon and extra points for much ado about nothing.


* vbNullString is identical to ""  for 99.9% of typical applications.  If you are playing with pointers and unicode there are some subtle differences.  
* <let x = Null> is the same as <let x = ""> and <let x = empty> only if x is a string. I will stick to using "" in most future coding involving strings.  Null and empty are really intended for variants.
* <if x = empty>  is the same as <if isempty(x)> only if x is a variant.  Neither should be used for strings.
* worksheet function isblank is the same as vbafunction isempty
* there is no way to turn "" into empty without resorting to vba.
* the best way to RightTrim everything is
 sub myRtrim()    
    Dim hold As Range
    Set hold = Selection
    Cells(1, 1).Select
    Dim cl As Range
    ' ActiveSheet.Cells(1, 1).Select
    Selection.SpecialCells(xlCellTypeConstants, xlTextValues).Select
    For Each cl In Selection
    If Right(cl.Formula, 1) = " " Then
        cl.Value = RTrim(cl.Value)
    End If
   
    Next cl
    hold.Select
End sub



 

by: sebastienmPosted on 2004-05-05 at 22:35:39ID: 11002680

Nice summary, rberke. That was a good question!

Thank you for the points and grade.
Sebastien

 

by: mdmackillopPosted on 2004-05-06 at 09:27:15ID: 11007471

and thanks for the assist!  I'll bookmark this for future reference.
MD

 

by: rberkePosted on 2004-05-06 at 11:43:30ID: 11008639

The concept of "Isempty(myVariant)" normally applies to variants while the concept of "myObject is nothing" applies to objects.

If someone wanted a similar construct that would apply to strings, the vbNullString fills the bill.
Its too subtle, so I would never use it, but here is how it would work.

Function IsNullString(myString)
    IsNullString = StrPtr(myString) = 0
End Function

------------
hmmm, subtle, subtle, subtle

dim c as range
set c = cells(1000,1) ' which is certainly empty
debug.print isNullString(c.value)  ' shows false, when I was expecting true.  

This is actually "correct" because my isNullString routine was designed to work with basic strings, but I passed it a variant.
I might have tested vartype inside the routine, but this is now getting way too theoretical so I stopped.

Also since a variant can be an object,  isempty and is nothing can apply at the same time so this snippet might make sense.
   if not isempty(myVariant) then
      if not myVariant is null then
          msgbox myvariant.property

I should have quit while I thought I understood 80% of this.

If anyone feels like commenting, that's fine, but I'm not going to look at this till monday.

 

by: rberkePosted on 2004-06-29 at 14:43:43ID: 11430704

"The best way to RightTrim everything"  had some bugs in it.  I like the following better.  

It also fixes cells that look like numbers so that they really are numbers.  For instance, a 4 character long text cell that had "   1 " will become 1.

Sub myRtrimall()

' report changes and bugs to http://www.experts-exchange.com/Applications/MS_Office/Excel/Q_20978027.html

Dim hold As Range, active As Range, cl As Object, i As Long
   
    ' removes trailing white space from every cell in active worksheet.
    ' Also, sometimes numbers don't display as numeric because of leading
    ' white space.  These will also be removed.
    Set hold = Selection
    Set active = ActiveCell
    Cells(1, 1).Select
    On Error Resume Next
    Selection.SpecialCells(xlCellTypeConstants, xlTextValues).Select
    myerr = Err
    On Error GoTo 0
    If myerr > 0 Then
        hold.Select
        active.Activate
        Exit Sub
    End If
   
    For Each cl In Selection
        If Len(cl) = 0 Then cl = "": GoTo Nextcl ' an empty cell would never be selected
       
        ' check for white space on the right and drop it
        For i = Len(cl) To 1 Step -1
            Select Case Asc(MID(cl, i, 1))
                Case 9 to 13, 32, 160:
                Case Else: Exit For
            End Select
        Next i

        If i <> Len(cl) Then
            cl = Left(cl, i)
        End If
       
        ' if the cell is a number with white space on the left, or simply a number
        For i = 1 To Len(cl) ' find first non white character
            Select Case Asc(MID(cl, i, 1))
                Case 9 to 13, 32, 160:
                Case Else: Exit For
            End Select
        Next i
     
        If IsNumeric(MID(cl, i)) Then
            cl = MID(cl, i)
        End If
       
Nextcl:
    Next cl
   
    hold.Select
    active.Activate
       
End Sub

 

by: rberkePosted on 2005-05-10 at 11:53:19ID: 13971418

5/10/2005 the above code is wrong, everywhere that says "case 9 - 13"  should say " case 9 to 13"

<<I fixed the code to agree with this comment.
byundt--Excel TA Page Editor  8/7/05>>

 

by: rberkePosted on 2005-08-10 at 12:06:35ID: 14645325

The above code has another bug. It should say
       If Len(cl) = 0 Then cl.Clear: GoTo Nextcl ' an empty cell would never be selected, so a clear is necessary

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...