Re: $$Excel-Macros$$ One lookup and different corresponding values

2011-02-04 Thread Manish
Also Sumproduct is useful for numaric value. Is there any other formula, that will work as SUMPRODUCT for text?? Pls suggest. On Feb 5, 11:05 am, Manish wrote: > Is it possible to hide the complete row based on lookup value?? > For example in your solution, if i lookup value x than i want to hid

Re: $$Excel-Macros$$ One lookup and different corresponding values

2011-02-04 Thread Manish
Is it possible to hide the complete row based on lookup value?? For example in your solution, if i lookup value x than i want to hide row 14 because the lookup result is 0 /Blank. And if i change the value and look the value y i want to hide both row 13 and 14. Simply, I want automtion for hide bl

Fwd: $$Excel-Macros$$ HOW TO CONVERT THE AMOUNT IN TEXT

2011-02-04 Thread solomon raju
Can someone define formula because I dont know macros. Regards, Solomon -- Forwarded message -- From: solomon raju Date: Thu, Feb 3, 2011 at 3:14 PM Subject: $$Excel-Macros$$ HOW TO CONVERT THE AMOUNT IN TEXT To: excel-macros@googlegroups.com Hi All, Please find the attached

$$Excel-Macros$$ Re: Is there any way to make excel and access "understand" this time format

2011-02-04 Thread flebber
On Feb 3, 10:18 pm, flebber wrote: > I have a table of data containing name and time information. Excel and > Access can understand it whilst it is in a format such as 12.2 or 11.8 > but when it is in a minutes format it cannot. > > For example I have a macro which I am still working on which wi

Re: $$Excel-Macros$$ How to Pull out Ref type Value base on process DOJ & Process Name

2011-02-04 Thread maulik desai
hello Sir, Sorry for delay replay please find the dummy my database sheet with the same column no which is apper in database i want the same macro or formula as a output for attached file. Once again Congrates Ashish sir. On Thu, Feb 3, 2011 at 2:16 PM, ashish koul wrote: > > yo have sent me

Re: $$Excel-Macros$$ Click on Cell - show filtered data on another sheet

2011-02-04 Thread Paul Schreiner
It's actually very easy! It's called a Selection_Change event. on the worksheet, right-click on the sheet "tab" name and select View Code. in the VB Edit window, select the pull-down on the upper left and select Worksheet The default event is the Worksheet_SelectionChange event! the event gets

$$Excel-Macros$$ Click on Cell - show filtered data on another sheet

2011-02-04 Thread rcamarda
Hi, I'm not sure if this is possible, so I thought I would cast a wide net. Description: I have an Excel spreadsheet with many sheets of summary and detail information of employees. On a summary sheet, I have rows that list job titles and the quantity of employees with that job title in the adjacen

Re: $$Excel-Macros$$ HOW TO CONVERT THE AMOUNT IN TEXT

2011-02-04 Thread Honeymonster
Put into VBA moduke the "words" function below in your and use this formula: =UPPER("RUPEES "&words(B31) &" ONLY") Function words(fig, Optional point = "Point") As String Dim Digit(14) As Integer alpha = Array("", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Ele

Re: $$Excel-Macros$$ Intercompany company reconciliation report

2011-02-04 Thread rajan verma
Have u configured your Outlook.. Rajan. On Thu, Feb 3, 2011 at 11:26 PM, Jagadeesh B S wrote: > Ashish Koul > > Its not working...:( > > Regards > Jagadeesh B S > > > > On Fri, Feb 4, 2011 at 12:15 PM, ashish koul wrote: > >> HI >> >> try this see if it helps >> >> paste unique names and email

Re: $$Excel-Macros$$ FW: EXCEL FILE....

2011-02-04 Thread jaibeersingh panwar
Ajay, open the file go to "review" tab on the menu ribbon click on unprotect workbook now you can add new sheet Regards, Jaibeer On Fri, Feb 4, 2011 at 3:17 PM, MITTAL AJAY wrote: > Hi , can anybody help me in inserting a new sheet in this file & what was > the issue. > > > > *With Warm Regard

Re: $$Excel-Macros$$ FW: EXCEL FILE....

2011-02-04 Thread rajan verma
Please check if your workbook is not protected.. On Fri, Feb 4, 2011 at 1:47 AM, MITTAL AJAY wrote: > Hi , can anybody help me in inserting a new sheet in this file & what > was the issue. > > > > *With Warm Regards,* > > * * > > * Ajay Mittal* > > *This Message was sent from Indian Oil Messag

Re: $$Excel-Macros$$ FW: EXCEL FILE....

2011-02-04 Thread Paul Schreiner
The workbook is protected. Luckily, without a password. Simply unprotect the workbook. Paul From: MITTAL AJAY To: "excel-macros@googlegroups.com" Sent: Fri, February 4, 2011 4:47:46 AM Subject: $$Excel-Macros$$ FW: EXCEL FILE Hi , can anybody help me i

Re: $$Excel-Macros$$ Re: Ashish Koul : Most helpful member : Jan11

2011-02-04 Thread bhavya khanna
Hi Group, I have also learnt lots more in excel from Asish Koul. His blog is very good to learn excel. On Fri, Feb 4, 2011 at 1:37 AM, mahamadou lawali wrote: > Congratulations Ashish!! > His posts motivated me to learn more And I've learned a lot. > Thanks > > On Feb 2, 9:55 am, Ayush wro

Re: $$Excel-Macros$$ Intercompany company reconciliation report

2011-02-04 Thread Jagadeesh B S
Ashish Koul Its not working...:( Regards Jagadeesh B S On Fri, Feb 4, 2011 at 12:15 PM, ashish koul wrote: > HI > > try this see if it helps > > paste unique names and email ids on sheet 3 > > > > On Thu, Feb 3, 2011 at 2:50 PM, Jagadeesh B S wrote: > >> Ashish Koul >> >> >> >> I am using M

RE: $$Excel-Macros$$ Counting words or letters

2011-02-04 Thread Anil Bhange
Please use =LEN("Cell reference") it will count the words / letters of specific cell Regards,Anil Bhange IP Phone - 512320 | Mobile - 90290 32123 From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Jorge Marques Sent: Friday, February 04, 2011 1:17 AM To:

Re: $$Excel-Macros$$ Counting words or letters

2011-02-04 Thread Avinash Daga
use len function. like u want to calculate num of latter in 1 cell, than =len(a1). On Fri, Feb 4, 2011 at 1:17 AM, Jorge Marques wrote: > Hi, is there anyway of counting words ou letters in a specific cell?thank > you very much > > > -- > > --

Re: $$Excel-Macros$$ Counting words or letters

2011-02-04 Thread Manoj kumar
Hi, use Len function.. =LEN(cell_reference) Regards, Manoj Kumar On Fri, Feb 4, 2011 at 1:17 AM, Jorge Marques wrote: > Hi, is there anyway of counting words ou letters in a specific cell?thank > you very much > > > -- > > ---