Re: $$Excel-Macros$$ Re: Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Nasir Saikh
Yes but its not working one one user is using at a time when other opening 
its showing read only

On Wednesday, March 18, 2015 at 8:26:24 PM UTC+5:30, Swapnil Palande wrote:
>
> Hi Nadir,
>
> If you share work book you will not get this error.  Are you sure you have 
> share it?
>
> Regards,
>
> Swapnil
> On 18-Mar-2015 4:30 pm, "Nasir Saikh" > 
> wrote:
>
>> Dear Anil,
>>
>> Thanks for your reply but the query have not solved.
>> I already given the access to the users but only one user can use at a 
>> time if another wants to use then previous user is closing the excel then 
>> an other user can use otherwise it is showing in read only.
>>
>> I want that if one user already working in that sheet other one user also 
>> could use the same worksheet without read only.
>>
>>
>> On Wednesday, March 18, 2015 at 4:16:50 PM UTC+5:30, अनिल नारायण गवली 
>> wrote:
>>>
>>> Dear Nasir,
>>>
>>> You need to share with specific people by specifying with their username
>>>
>>> On Wed, Mar 18, 2015 at 3:51 PM, Nasir Saikh  wrote:
>>>
 Anybody Can help me out on this

 On Wednesday, March 18, 2015 at 1:46:59 PM UTC+5:30, Nasir Saikh wrote:
>
> Hi,
>
> I need help to make a excel workbook which should use by more than 5 
> members at a single time and all can save the workbook at a time.
>
> Please help me i am stuck on it
>
> Regards
> Nasir Shaikh
> 876702
>
  -- 
 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...@googlegroups.com.
 To post to this group, send email to excel-...@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>  -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to excel-...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 G

$$Excel-Macros$$ Macro to Copy Active Sheet

2015-03-18 Thread Stephen E. Hale


I have written a macro that copies from a master sheet and places the new 
sheet after the last sheet. The macro is triggered by the "New Week >" 
button on the master sheet. I want the macro to copy from the active sheet 
instead of the master sheet. Any help is much appreciated. If anymore info 
is needed, please let me know...

The macro I am using now looks like this:

Sub CopyRename()
Dim sName As String
Dim wks As Worksheet
Worksheets("Master").Copy after:=Sheets(Worksheets.Count)
Set wks = ActiveSheet
Do While sName <> wks.Name
sName = Application.InputBox _
  (Prompt:="Enter new worksheet name")
On Error Resume Next
wks.Name = sName
On Error GoTo 0
Loop
Set wks = Nothing
End Sub

-- 
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/d/optout.


Stephen Hale.xltm
Description: application/vnd.ms-excel.template.macroenabled.12


RE: $$Excel-Macros$$ Re: vba recorded macro not working

2015-03-18 Thread Mike Barrett
Hi Mandeep,

 

I was wondering all of the data that your macro produces on a daily basis 
amounts to a large table which I then append to the master table which has the 
entire months’ worth of data, then I update the range on my Pivot table and 
RefreshAll to update the Pivot table; is this something that can be automated 
with a macro and if so would you be willing to help with it?  Thank you again 
for your help.

 

The Best,

 

Mike

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On 
Behalf Of Mandeep baluja
Sent: Monday, March 16, 2015 11:35 PM
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Re: vba recorded macro not working

 

Dear Mike,

Thank u so much for your Appreciation. It's a pleasure to help anyone because 
it expands my knowledge about VBA , The thing is I am a beginner and wish i 
will reach at a position where can i help everyone in anyway it can be and want 
to reach at a higher Package in a firm.

wish you luck.
 

Regards, 
MandeepBaluja
Learningzmypassion.
https://www.facebook.com/VBAEXCELSQL?ref=hl
https://www.linkedin.com/profile/view?id=312532939



On Monday, 16 March 2015 23:46:40 UTC+5:30, Mike B wrote:

Hi Mandeep,

 

Thank you, thank you again for your excellent help.  Is there anything I can do 
for you to show my appreciation?  I was really stuck and you bailed me out, I 
tried severl different ways and could not get it to work.  Thank you, Again.

 

The Best,

 

Mike Barrett

 

From: excel-...@googlegroups.com   
[mailto:excel-...@googlegroups.com  ] On Behalf Of Mandeep baluja
Sent: Monday, March 16, 2015 4:48 AM
To: excel-...@googlegroups.com  
Subject: $$Excel-Macros$$ Re: vba recorded macro not working

 

Run this code in your data

Sub Test()
With Application
.ScreenUpdating = False
.DisplayAlerts = False
End With

Dim lr As Long
lr = ActiveSheet.Cells(Rows.Count, 3).End(xlUp).Row

Set Rng = Range("C1:C" & lr)
Debug.Print Rng.Address
For Each Cell In Rng

If Left(Cell.Value, 5) = "Estab" Then
estab = Cell
ElseIf Left(Cell.Value, 2) <> "CG" Then
temp = Cell
Debug.Print temp
Else
Debug.Print Len(estab)
Cell.Offset(0, -2).Value = Trim(Right(estab, Len(estab) - 14))
Cell.Offset(0, -1).Value = Trim(Right(temp, Len(temp) - 31))
End If

Next

ActiveSheet.Range("C3:C" & lr).AutoFilter field:=1, Criteria1:="<>*CG*"
ActiveSheet.Range("C2:C" & lr).SpecialCells(xlCellTypeVisible).EntireRow.Delete

End Sub

-- 
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 a topic in the Google 
Groups "MS EXCEL AND VBA MACROS" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/excel-macros/BxB4QfFrdl4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
excel-macros...@googlegroups.com  .
To post to this group, send email to excel-...@googlegroups.com  .
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

-- 
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 a topic in the Google 
Groups "MS EXCEL AND VBA MACROS" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/excel-macros/BxB4QfFrdl4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
excel-macros+unsubscr...@googlegroups.com 
 .
To post to this group, send

Re: $$Excel-Macros$$ Re: Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Swapnil Palande
Hi Nadir,

If you share work book you will not get this error.  Are you sure you have
share it?

Regards,

Swapnil
On 18-Mar-2015 4:30 pm, "Nasir Saikh"  wrote:

> Dear Anil,
>
> Thanks for your reply but the query have not solved.
> I already given the access to the users but only one user can use at a
> time if another wants to use then previous user is closing the excel then
> an other user can use otherwise it is showing in read only.
>
> I want that if one user already working in that sheet other one user also
> could use the same worksheet without read only.
>
>
> On Wednesday, March 18, 2015 at 4:16:50 PM UTC+5:30, अनिल नारायण गवली
> wrote:
>>
>> Dear Nasir,
>>
>> You need to share with specific people by specifying with their username
>>
>> On Wed, Mar 18, 2015 at 3:51 PM, Nasir Saikh  wrote:
>>
>>> Anybody Can help me out on this
>>>
>>> On Wednesday, March 18, 2015 at 1:46:59 PM UTC+5:30, Nasir Saikh wrote:

 Hi,

 I need help to make a excel workbook which should use by more than 5
 members at a single time and all can save the workbook at a time.

 Please help me i am stuck on it

 Regards
 Nasir Shaikh
 876702

>>>  --
>>> 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...@googlegroups.com.
>>> To post to this group, send email to excel-...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/excel-macros.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
> 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/d/optout.
>

-- 
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

Re: $$Excel-Macros$$ Re: Query Regarding Duplicate and Update Status

2015-03-18 Thread saravanan R
Hi Mandeep,

Thanks a Million.

I have one more query related to the same file, is it possible to split the
file based on "Status" OK wrt to each Coleague.
and file name should be QueryDup-FK & QueryDup-BD (colleague name will be
dyanmic)

thanks in advance.


On Wed, Mar 18, 2015 at 5:25 PM, Mandeep baluja 
wrote:

> Try this ..
>
>
> Regards,
> MandeepBaluja
> Learningzmypassion.
> https://www.facebook.com/VBAEXCELSQL?ref=hl
> https://www.linkedin.com/profile/view?id=312532939
>
> On Wednesday, 18 March 2015 16:59:17 UTC+5:30, saravanan R wrote:
>>
>> Hello Team,
>>
>> I have an Query regarding Duplicate check for certain Criteria in filter.
>> I need this  to be in VBA Code . Please see the details below and find the
>> sample attached file with expected result mentioned.
>>
>> I have to filter for FK (Column "B"), Then find duplicate DOC.no for this
>> colleague only. If the DOC no. is Duplicating then Update Status as "OK",
>> if it is Unique then update as "NOT OK"
>>
>> thanks in advance,
>>
>> Saravanan R
>> +91 8807708842
>> +91 9449716334
>>
>  --
> 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/d/optout.
>

-- 
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/d/optout.


$$Excel-Macros$$ Re: Query Regarding Duplicate and Update Status

2015-03-18 Thread Mandeep baluja
Try this ..


Regards, 
MandeepBaluja
Learningzmypassion.
https://www.facebook.com/VBAEXCELSQL?ref=hl
https://www.linkedin.com/profile/view?id=312532939

On Wednesday, 18 March 2015 16:59:17 UTC+5:30, saravanan R wrote:
>
> Hello Team,
>
> I have an Query regarding Duplicate check for certain Criteria in filter. 
> I need this  to be in VBA Code . Please see the details below and find the 
> sample attached file with expected result mentioned.
>
> I have to filter for FK (Column "B"), Then find duplicate DOC.no for this 
> colleague only. If the DOC no. is Duplicating then Update Status as "OK", 
> if it is Unique then update as "NOT OK"
>
> thanks in advance,
>
> Saravanan R
> +91 8807708842
> +91 9449716334
>

-- 
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/d/optout.


QueryDup.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


$$Excel-Macros$$ Query Regarding Duplicate and Update Status

2015-03-18 Thread saravanan R
Hello Team,

I have an Query regarding Duplicate check for certain Criteria in filter. I
need this  to be in VBA Code . Please see the details below and find the
sample attached file with expected result mentioned.

I have to filter for FK (Column "B"), Then find duplicate DOC.no for this
colleague only. If the DOC no. is Duplicating then Update Status as "OK",
if it is Unique then update as "NOT OK"

thanks in advance,

Saravanan R
+91 8807708842
+91 9449716334

-- 
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/d/optout.


QUERY_DUP.xlsx
Description: MS-Excel 2007 spreadsheet


Re: $$Excel-Macros$$ Re: Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Nasir Saikh
Dear Anil,

Thanks for your reply but the query have not solved.
I already given the access to the users but only one user can use at a time 
if another wants to use then previous user is closing the excel then an 
other user can use otherwise it is showing in read only.

I want that if one user already working in that sheet other one user also 
could use the same worksheet without read only.


On Wednesday, March 18, 2015 at 4:16:50 PM UTC+5:30, अनिल नारायण गवली wrote:
>
> Dear Nasir,
>
> You need to share with specific people by specifying with their username
>
> On Wed, Mar 18, 2015 at 3:51 PM, Nasir Saikh  > wrote:
>
>> Anybody Can help me out on this
>>
>> On Wednesday, March 18, 2015 at 1:46:59 PM UTC+5:30, Nasir Saikh wrote:
>>>
>>> Hi,
>>>
>>> I need help to make a excel workbook which should use by more than 5 
>>> members at a single time and all can save the workbook at a time.
>>>
>>> Please help me i am stuck on it
>>>
>>> Regards
>>> Nasir Shaikh
>>> 876702
>>>
>>  -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to excel-...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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/d/optout.


Re: $$Excel-Macros$$ Re: Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Michael Vinoth
Hi Nasir Saikh,

Try this:- 
https://support.office.com/en-ca/article/Use-a-shared--workbook-to-collaborate-b8207fe9-a613-483f-b804-0ca4658b0c61?ui=en-US&rs=en-CA&ad=CA

Regards,
MV

> On 18-Mar-2015, at 3:51 pm, Nasir Saikh  wrote:
> 
> Anybody Can help me out on this
> 
>> On Wednesday, March 18, 2015 at 1:46:59 PM UTC+5:30, Nasir Saikh wrote:
>> Hi,
>> 
>> I need help to make a excel workbook which should use by more than 5 members 
>> at a single time and all can save the workbook at a time.
>> 
>> Please help me i am stuck on it
>> 
>> Regards
>> Nasir Shaikh
>> 876702
> 
> -- 
> 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/d/optout.

-- 
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/d/optout.


Re: $$Excel-Macros$$ Re: Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Anil Gawli
Dear Nasir,

You need to share with specific people by specifying with their username

On Wed, Mar 18, 2015 at 3:51 PM, Nasir Saikh  wrote:

> Anybody Can help me out on this
>
> On Wednesday, March 18, 2015 at 1:46:59 PM UTC+5:30, Nasir Saikh wrote:
>>
>> Hi,
>>
>> I need help to make a excel workbook which should use by more than 5
>> members at a single time and all can save the workbook at a time.
>>
>> Please help me i am stuck on it
>>
>> Regards
>> Nasir Shaikh
>> 876702
>>
>  --
> 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/d/optout.
>

-- 
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/d/optout.


$$Excel-Macros$$ Re: Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Nasir Saikh
Anybody Can help me out on this

On Wednesday, March 18, 2015 at 1:46:59 PM UTC+5:30, Nasir Saikh wrote:
>
> Hi,
>
> I need help to make a excel workbook which should use by more than 5 
> members at a single time and all can save the workbook at a time.
>
> Please help me i am stuck on it
>
> Regards
> Nasir Shaikh
> 876702
>

-- 
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/d/optout.


$$Excel-Macros$$ Want to work on single workbook with multiple user at a time.

2015-03-18 Thread Nasir Saikh
Hi,

I need help to make a excel workbook which should use by more than 5 
members at a single time and all can save the workbook at a time.

Please help me i am stuck on it

Regards
Nasir Shaikh
876702

-- 
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/d/optout.