Re: $$Excel-Macros$$ Output Requier in Vertical

2013-08-28 Thread Prafull Jadhav
Dear Sir,


Plesae explain the for my information.

 Range(a2:a15).Cells(K, 1)  out would be like
ABDE.continue
but how it come

AABCCDDDEEFHHHIIJKLLMN

Please explain.
It working very fine as per my desire output


On Wed, Aug 28, 2013 at 10:53 AM, Prafull Jadhav
prafulltjad...@gmail.comwrote:

 Dear Sir,

  Range(a2:a15).Cells(K, 1)  out would be like
 ABDE.continue
 but how it come
 AABCCDDDEEFHHHIIJKLLMN

 Please explain.
 It working very fine as per my desire output



 On Wed, Aug 28, 2013 at 10:34 AM, xlstime xlst...@gmail.com wrote:

 PFB


 Sub amit()
 For K = 1 To Range(B2:X15).EntireRow.Count
 For P = 1 To Range(B2:X15).EntireColumn.Count
 Range(AA500).End(xlUp).Offset(1, 0).Value = Range(B2:X15).Cells(K, P)
 Range(AA500).End(xlUp).Offset(0, -1).Value = Range(a2:a15).Cells(K, 1)
 Next
 Next

 End Sub


 .

 Enjoy
 Team XLS



 On Wed, Aug 28, 2013 at 9:41 AM, Prafull Jadhav prafulltjad...@gmail.com
  wrote:

 Dear All,

 Very Good Morning ,

 I have made macro but i am able to extract output in only one column but
 i want it in 2 column .

 Please help me in this regards,

 Thanks in Advance.

 Regards,
 Prafull

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Output Requier in Vertical

2013-08-28 Thread xlstime
Firstly try your self to run one by one line using F8(function key)

Range(a2:a15).Cells(K, 1)

cells(k,1) - K count  no of active cells in row

K value remains same till K count = count  no of active cells in row
 and its hold range(a2:a15)'s value


.

Enjoy
Team XLS



On Thu, Aug 29, 2013 at 9:18 AM, Prafull Jadhav prafulltjad...@gmail.comwrote:

 Dear Sir,


 Plesae explain the for my information.

  Range(a2:a15).Cells(K, 1)  out would be like
 ABDE.continue
 but how it come

 AABCCDDDEEFHHHIIJKLLMN

 Please explain.
 It working very fine as per my desire output


 On Wed, Aug 28, 2013 at 10:53 AM, Prafull Jadhav prafulltjad...@gmail.com
  wrote:

 Dear Sir,

  Range(a2:a15).Cells(K, 1)  out would be like
 ABDE.continue
 but how it come
 AABCCDDDEEFHHHIIJKLLMN

 Please explain.
 It working very fine as per my desire output



 On Wed, Aug 28, 2013 at 10:34 AM, xlstime xlst...@gmail.com wrote:

 PFB


 Sub amit()
 For K = 1 To Range(B2:X15).EntireRow.Count
 For P = 1 To Range(B2:X15).EntireColumn.Count
 Range(AA500).End(xlUp).Offset(1, 0).Value = Range(B2:X15).Cells(K, P)
 Range(AA500).End(xlUp).Offset(0, -1).Value = Range(a2:a15).Cells(K,
 1)
 Next
 Next

 End Sub


 .

 Enjoy
 Team XLS



 On Wed, Aug 28, 2013 at 9:41 AM, Prafull Jadhav 
 prafulltjad...@gmail.com wrote:

 Dear All,

 Very Good Morning ,

 I have made macro but i am able to extract output in only one column
 but i want it in 2 column .

 Please help me in this regards,

 Thanks in Advance.

 Regards,
 Prafull

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners
 and members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.



  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to 

Re: $$Excel-Macros$$ Output Requier in Vertical

2013-08-28 Thread Prafull Jadhav
Got it Sir. Thanks a lot.
On 29-Aug-2013 9:56 AM, xlstime xlst...@gmail.com wrote:

 Firstly try your self to run one by one line using F8(function key)

 Range(a2:a15).Cells(K, 1)

 cells(k,1) - K count  no of active cells in row

 K value remains same till K count = count  no of active cells in row
  and its hold range(a2:a15)'s value


 .

 Enjoy
 Team XLS



 On Thu, Aug 29, 2013 at 9:18 AM, Prafull Jadhav 
 prafulltjad...@gmail.comwrote:

 Dear Sir,


 Plesae explain the for my information.

  Range(a2:a15).Cells(K, 1)  out would be like
 ABDE.continue
 but how it come

 AABCCDDDEEFHHHIIJKLLMN

 Please explain.
 It working very fine as per my desire output


 On Wed, Aug 28, 2013 at 10:53 AM, Prafull Jadhav 
 prafulltjad...@gmail.com wrote:

 Dear Sir,

  Range(a2:a15).Cells(K, 1)  out would be like
 ABDE.continue
 but how it come
 AABCCDDDEEFHHHIIJKLLMN

 Please explain.
 It working very fine as per my desire output



 On Wed, Aug 28, 2013 at 10:34 AM, xlstime xlst...@gmail.com wrote:

 PFB


 Sub amit()
 For K = 1 To Range(B2:X15).EntireRow.Count
 For P = 1 To Range(B2:X15).EntireColumn.Count
 Range(AA500).End(xlUp).Offset(1, 0).Value = Range(B2:X15).Cells(K,
 P)
 Range(AA500).End(xlUp).Offset(0, -1).Value = Range(a2:a15).Cells(K,
 1)
 Next
 Next

 End Sub


 .

 Enjoy
 Team XLS



 On Wed, Aug 28, 2013 at 9:41 AM, Prafull Jadhav 
 prafulltjad...@gmail.com wrote:

 Dear All,

 Very Good Morning ,

 I have made macro but i am able to extract output in only one column
 but i want it in 2 column .

 Please help me in this regards,

 Thanks in Advance.

 Regards,
 Prafull

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like
 Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
 Advice will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners
 and members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners
 and members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.



  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members 

Re: $$Excel-Macros$$ Output Requier in Vertical

2013-08-27 Thread xlstime
PFB


Sub amit()
For K = 1 To Range(B2:X15).EntireRow.Count
For P = 1 To Range(B2:X15).EntireColumn.Count
Range(AA500).End(xlUp).Offset(1, 0).Value = Range(B2:X15).Cells(K, P)
Range(AA500).End(xlUp).Offset(0, -1).Value = Range(a2:a15).Cells(K, 1)
Next
Next

End Sub


.

Enjoy
Team XLS



On Wed, Aug 28, 2013 at 9:41 AM, Prafull Jadhav prafulltjad...@gmail.comwrote:

 Dear All,

 Very Good Morning ,

 I have made macro but i am able to extract output in only one column but i
 want it in 2 column .

 Please help me in this regards,

 Thanks in Advance.

 Regards,
 Prafull

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Output Requier in Vertical

2013-08-27 Thread Prafull Jadhav
Dear Sir,

 Range(a2:a15).Cells(K, 1)  out would be like
ABDE.continue
but how it come
AABCCDDDEEFHHHIIJKLLMN

Please explain.
It working very fine as per my desire output



On Wed, Aug 28, 2013 at 10:34 AM, xlstime xlst...@gmail.com wrote:

 PFB


 Sub amit()
 For K = 1 To Range(B2:X15).EntireRow.Count
 For P = 1 To Range(B2:X15).EntireColumn.Count
 Range(AA500).End(xlUp).Offset(1, 0).Value = Range(B2:X15).Cells(K, P)
 Range(AA500).End(xlUp).Offset(0, -1).Value = Range(a2:a15).Cells(K, 1)
 Next
 Next

 End Sub


 .

 Enjoy
 Team XLS



 On Wed, Aug 28, 2013 at 9:41 AM, Prafull Jadhav 
 prafulltjad...@gmail.comwrote:

 Dear All,

 Very Good Morning ,

 I have made macro but i am able to extract output in only one column but
 i want it in 2 column .

 Please help me in this regards,

 Thanks in Advance.

 Regards,
 Prafull

  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.