Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 38
Default how to attach file

Dear all ,
Please let me know how to attach the file , in that way i can explain my
problem in better way
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to attach file

You can't attach files using the MS Discussion Group web interface.

--
Biff
Microsoft Excel MVP


"vmohan1978" wrote in message
...
Dear all ,
Please let me know how to attach the file , in that way i can explain my
problem in better way



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 38
Default how to attach file

oK .
My Problem is in ft and inches .
3) F G H I J K L
M N O P Q R
4) lENGTH Breadth Depth Qty




In J iam entering number ( as feet) (6) and K entering number as ( Feet) (3)
In L i entered formula K3&IF(K3="","","'")&L3&IF(L3="","","""") and
results(6'3" )

same way it appies to MNO and PQR
In F i written formula it shows as 6.25 WRT to L 6'3"
Formula is
(IF(IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)=0,0, LEFT(M3,IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)-1))+(IF((IF(ISNUMBER(FIND("""",M3)),FIND("""",M3), 0)=0),0,MID(M3,IF(IF(ISNUMBER(FIND("'",M3)),FIND(" '",M3),0)0,IF(ISNUMBER(FIND("'",M3)),FIND("'",M3) ,0)+1,1),IF(ISNUMBER(FIND("""",M3)),FIND("""",M3), 0)-IF(IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)0,IF( ISNUMBER(FIND("'",M3)),FIND("'",M3),0)+1,1))))/12)

same formula i applied the formula in G and H also
In I i applied formula as Product of (F*G*H) . If I won't type in M and N H
shows 0 similarly if i won't type in P& Q , H shows 0 .

I need a formula in such a way that I f i wont enter number in M, N and P,Q
G & H should show blank . But when I multiply F,G,H i should get product.

Hope you understand my problem.

"T. Valko" wrote:

You can't attach files using the MS Discussion Group web interface.

--
Biff
Microsoft Excel MVP


"vmohan1978" wrote in message
...
Dear all ,
Please let me know how to attach the file , in that way i can explain my
problem in better way



.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to attach file

I'm not following you on this.

You have 2 cells:

cell1 = 6
cell2 = 3

You convert that to a text string to represent Feet - Inches = 6'3"

Then you use that long formula to convert 6"3" into a decimal number 6.25.

So, why use that long formula to convert the text string 6'3" into a decimal
number 6.25, why not just use cell1 and cell2?

--
Biff
Microsoft Excel MVP


"vmohan1978" wrote in message
...
oK .
My Problem is in ft and inches .
3) F G H I J K
L
M N O P Q R
4) lENGTH Breadth Depth Qty




In J iam entering number ( as feet) (6) and K entering number as ( Feet)
(3)
In L i entered formula K3&IF(K3="","","'")&L3&IF(L3="","","""") and
results(6'3" )

same way it appies to MNO and PQR
In F i written formula it shows as 6.25 WRT to L 6'3"
Formula is
(IF(IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)=0,0, LEFT(M3,IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)-1))+(IF((IF(ISNUMBER(FIND("""",M3)),FIND("""",M3), 0)=0),0,MID(M3,IF(IF(ISNUMBER(FIND("'",M3)),FIND(" '",M3),0)0,IF(ISNUMBER(FIND("'",M3)),FIND("'",M3) ,0)+1,1),IF(ISNUMBER(FIND("""",M3)),FIND("""",M3), 0)-IF(IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)0,IF( ISNUMBER(FIND("'",M3)),FIND("'",M3),0)+1,1))))/12)

same formula i applied the formula in G and H also
In I i applied formula as Product of (F*G*H) . If I won't type in M and N
H
shows 0 similarly if i won't type in P& Q , H shows 0 .

I need a formula in such a way that I f i wont enter number in M, N and
P,Q
G & H should show blank . But when I multiply F,G,H i should get product.

Hope you understand my problem.

"T. Valko" wrote:

You can't attach files using the MS Discussion Group web interface.

--
Biff
Microsoft Excel MVP


"vmohan1978" wrote in message
...
Dear all ,
Please let me know how to attach the file , in that way i can explain
my
problem in better way



.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default how to attach file

Clarification:

So, why use that long formula to convert the text string 6'3" into a
decimal number 6.25, why not just use
cell1 and cell2?


Why not just use the values of cell1 and cell2 to come up with 6.25 rather
than using that long formula to convert from the text string 6'3"?

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
I'm not following you on this.

You have 2 cells:

cell1 = 6
cell2 = 3

You convert that to a text string to represent Feet - Inches = 6'3"

Then you use that long formula to convert 6"3" into a decimal number 6.25.

So, why use that long formula to convert the text string 6'3" into a
decimal number 6.25, why not just use cell1 and cell2?

--
Biff
Microsoft Excel MVP


"vmohan1978" wrote in message
...
oK .
My Problem is in ft and inches .
3) F G H I J K L
M N O P Q R
4) lENGTH Breadth Depth Qty




In J iam entering number ( as feet) (6) and K entering number as ( Feet)
(3)
In L i entered formula K3&IF(K3="","","'")&L3&IF(L3="","","""") and
results(6'3" )

same way it appies to MNO and PQR
In F i written formula it shows as 6.25 WRT to L 6'3"
Formula is
(IF(IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)=0,0, LEFT(M3,IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)-1))+(IF((IF(ISNUMBER(FIND("""",M3)),FIND("""",M3), 0)=0),0,MID(M3,IF(IF(ISNUMBER(FIND("'",M3)),FIND(" '",M3),0)0,IF(ISNUMBER(FIND("'",M3)),FIND("'",M3) ,0)+1,1),IF(ISNUMBER(FIND("""",M3)),FIND("""",M3), 0)-IF(IF(ISNUMBER(FIND("'",M3)),FIND("'",M3),0)0,IF( ISNUMBER(FIND("'",M3)),FIND("'",M3),0)+1,1))))/12)

same formula i applied the formula in G and H also
In I i applied formula as Product of (F*G*H) . If I won't type in M and N
H
shows 0 similarly if i won't type in P& Q , H shows 0 .

I need a formula in such a way that I f i wont enter number in M, N and
P,Q
G & H should show blank . But when I multiply F,G,H i should get product.

Hope you understand my problem.

"T. Valko" wrote:

You can't attach files using the MS Discussion Group web interface.

--
Biff
Microsoft Excel MVP


"vmohan1978" wrote in message
...
Dear all ,
Please let me know how to attach the file , in that way i can explain
my
problem in better way


.







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default how to attach file

This newsgroup isn't a binary group, so attachments aren't allowed.
--
David Biddulph

"vmohan1978" wrote in message
...
Dear all ,
Please let me know how to attach the file , in that way i can explain my
problem in better way



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to attach file into excel 2007 si_08747 Excel Discussion (Misc queries) 1 June 17th 09 12:24 PM
Were can I attach a file to respond to a question ShaneDevenshire Charts and Charting in Excel 2 January 10th 08 09:07 PM
How do I attach a file with an answer? ShaneDevenshire Charts and Charting in Excel 1 January 9th 08 08:02 PM
How attach a file in one cell How attach a file in the cell New Users to Excel 1 July 3rd 07 08:48 PM
How do I copy a file and attach a date to the name of the file hccatmo Excel Discussion (Misc queries) 1 February 23rd 07 08:21 PM


All times are GMT +1. The time now is 06:35 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"