You can choose whichever cell you'd like and insert the following
formula.

=ReturnComputerName()



On Jan 6, 12:24 pm, Rajesh K R <rajeshkainikk...@gmail.com> wrote:
> Hi
> Thanks for the mail, let me know one thing how can get the result in
> sheet 1! range"A1"
> Regards
> Rajesh kainikkara
>
> On 1/6/11, JsinSk <jsin...@gmail.com> wrote:
>
> > Private Declare Function GetComputerName Lib "kernel32" _
> >     Alias "GetComputerNameA" _
> >     (ByVal lpBuffer As String, nSize As Long) As Long
>
> > Function ReturnComputerName() As String
> > Dim rString As String * 255, sLen As Long, tString As String
> >     tString = ""
> >     On Error Resume Next
> >     sLen = GetComputerName(rString, 255)
> >     sLen = InStr(1, rString, Chr(0))
> >     If sLen > 0 Then
> >         tString = Left(rString, sLen - 1)
> >     Else
> >         tString = rString
> >     End If
> >     On Error GoTo 0
> >     ReturnComputerName = UCase(Trim(tString))
> > End Function
>
> > Found at:
> >http://www.exceltip.com/st/Function_for_returning_the_computer_name_u...
>
> > --
> > ----------------------------------------------------------------------------------
> > Some important links for excel users:
> > 1. Follow us on TWITTER for tips tricks and links :
> >http://twitter.com/exceldailytip
> > 2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
> > 3. Excel tutorials athttp://www.excel-macros.blogspot.com
> > 4. Learn VBA Macros athttp://www.quickvba.blogspot.com
> > 5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> > To post to this group, send email to excel-macros@googlegroups.com
>
> > <><><><><><><><><><><><><><><><><><><><><><>
> > Like our page on facebook , Just follow below link
> >http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wall&;...
>
>

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wall&ref=ts

Reply via email to