2012 Dominos Pizza Buy 1 Get 1 Free Coupon - Printable

Printable Dominos Pizza India "Buy 1 Get 1 Free Pizza" Coupon for 2012. Buy 1 Get 1 Free Pizza Coupon Code : LSM04 Validity : 31 Aug 2012. You just have to download the Dominos Pizza "Buy 1 Get 1 Free" Coupon and enjoy your free Pizza. The Coupon should be announced while ordering the pizza on telephone with the coupon code of "LSM 04" and when the pizza is delivered, provide with the print copy of one of the coupon attached in the blog post


Expiry date for the Dominos Pizza "Buy 1 Get 1 Free" Coupon is 31 Aug 2012, so that you can use the coupon for 6 months. Conditions for using the Dominos Pizza Coupon includes;

  • Valid for a purchase of Medium / Large Pizza and get another pizza absolutely free.
  • Free Pizza should be of same or less value.
  • Not Valid on Simple Pizza range (Veg & Non-Veg)
  • Additional details mentioned on the coupon
  • Announce the coupon while ordering the pizza
Enjoy and please share the same with your friends and leave comments





Macro : Copy Excel Sheets as Workbook

How to copy every sheet in a excel workbook into a new workbook? Visual Basic (VB) Macro code (download a excel workbook) loaded with Excel Macro to Copy Every sheets to (as) New Workbooks with the Sheet Name converted into Workbook with just a click of macro button. You can use below macro code directly into the workbook, which requires sheets to be converted in to different workbook. You can also download a Sample copy of the Copy Every Sheet to New Workbook - Macro Enabled Worksheet.

Copy Every Sheet to New Workbook - Excel Macro
  1. Copy below mentioned VB Macro code
  2. Open Excel and Press Alt + F11 to open VB Project
  3. On left panel, Right click on "This Workbook" under VBA Project
  4. Go to Insert > Modules
  5. Paste the below copied VB code on the right white panel.
  6. Press Cltr + S to save the workbook
  7. Click on the Macro Button to copy every sheet to new workbook
  8. Enjoy.,

Sub Copy_Every_Sheet_To_New_Workbook()
'Working in 97-2010
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Workbook
Dim Destwb As Workbook
Dim sh As Worksheet
Dim DateString As String
Dim FolderName As String

With Application
.ScreenUpdating = False
.EnableEvents = False
.Calculation = xlCalculationManual
End With

'Copy every sheet from the workbook with this macro
Set Sourcewb = ActiveWorkbook

'Create new folder to save the new files in
DateString = Format(Now, "yyyy-mm-dd hh-mm-ss")
FolderName = Sourcewb.Path & "\" & Sourcewb.Name & " " & DateString
MkDir FolderName

'Copy every visible sheet to a new workbook
For Each sh In Sourcewb.Worksheets

'If the sheet is visible then copy it to a new workbook
If sh.Visible = -1 Then
sh.Copy

'Set Destwb to the new workbook
Set Destwb = ActiveWorkbook

'Determine the Excel version and file extension/format
With Destwb
If Val(Application.Version) < 12 Then
'You use Excel 97-2003
FileExtStr = ".xls": FileFormatNum = -4143
Else
'You use Excel 2007-2010
If Sourcewb.Name = .Name Then
MsgBox "Your answer is NO in the security dialog"
GoTo GoToNextSheet
Else
Select Case Sourcewb.FileFormat
Case 51: FileExtStr = ".xlsx": FileFormatNum = 51
Case 52:
If .HasVBProject Then
FileExtStr = ".xlsm": FileFormatNum = 52
Else
FileExtStr = ".xlsx": FileFormatNum = 51
End If
Case 56: FileExtStr = ".xls": FileFormatNum = 56
Case Else: FileExtStr = ".xlsb": FileFormatNum = 50
End Select
End If
End If
End With

'Change all cells in the worksheet to values if you want
If Destwb.Sheets(1).ProtectContents = False Then
With Destwb.Sheets(1).UsedRange
.Cells.Copy
.Cells.PasteSpecial xlPasteValues
.Cells(1).Select
End With
Application.CutCopyMode = False
End If


'Save the new workbook and close it
With Destwb
.SaveAs FolderName _
& "\" & Destwb.Sheets(1).Name & "-" & Sourcewb.Name, _
FileFormat:=FileFormatNum
.Close False
End With

End If
GoToNextSheet:
Next sh

MsgBox "Visit http://routineinfo.com/ for More....Job Done Sir - You can find the files in " & FolderName

With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = xlCalculationAutomatic
End With
End Sub

Hope this would have helped you save the time on excel and avoiding the routine work of copying all the sheets to a new workbook manually.... Stay tuned for more excel tips & technique i normally use in my office...

Note : - I am not the author of the Macro..

Why to Use Social Media at Work? Reasons

Are you using social media like Facebook, Twitter, etc., in Office? Do your organization / company limit use of the social media at the workplace via restricting or blocking ? Most of the Organization i know personally, limits the use of the social media at the workplace as they have the mindset “Employees are wasting their working hours on Facebook or Twitter. ? If I talk about my own organization, they are blocking most of the social media / email / or video sites, so that we (employees) can concentrate on the work for which they are paid


Today, when i got newsletter from the Harvard Business, which focused on Use of the Social media at the work, I was really surprises and thought would review & share with all my friends over the social media, this is what they have to say.,

3 Reasons to use Social Media (Twitter, Facebook, etc) at Work :

  1. More attractive workplace. Many people, especially younger generations, see social media as a staple of work life and seek out employers who understand and acknowledge the critical role these new technologies play in our world.
  2. Improved productivity. Research has shown that employees who take breaks to surf the internet for fun are ultimately more productive than their surf-adverse colleagues.
  3. More engaged workforce. Employees not only appreciate companies that allow them to check Facebook at work, but they also use social media to connect with colleagues, improve communication, and speed up decision making processes — all of which helps them engage with their work and the organization.
What is Social Media ? If you are still thinking about it ?

Social media is media designed to be disseminated through social interaction, created using highly accessible and scalable publishing techniques – Wikipedia
Social media can be said to have three components;
  1. Concept (art, information, or meme).
  2. Media (physical, electronic, or verbal).
  3. Social interface (intimate direct, community engagement, social viral, electronic broadcast or syndication, or other physical media such as print).
The above 3 Reasons, are taken from the Harvard Business newsletter, “The Über-Connected Organization: A Mandate for 2010” which explains the reasons why companies or organization should encourage use of the social media at work instead of blocking them. In Short, Reason includes : Access to social media improves productivity, Millennial will seek jobs that encourage the use of social media, Companies that provide access to social media create a more engaged workforce.

What more., Company & its employees need ? What is your take over from it ., do you agree on using social media at work is in favor of company & employees ? Comment please your views.,