Tuesday, April 06, 2010

How much do SEO marketing guys charge?

Interesting enough got an email for Microsoft Gold Partners for an SEO mob to help googlisation.

There are so many simple ways to enhance your googlisation.
The wrong ways mean alot of work and little business.
The right ways are easier and add to your profits.

These SEO guys were charging between $1,400 to $3,000:
The $1,400 version just gave you a report each month for 6 months.
The $3,000 one also included 10 hours of consultation.

And to think that there is a free download for .net guys that runs this in seconds on a site!

It is easy to see why everyone is worried about SEO!
The internet is just another marketing mechanism and marketing/advertising requires a few simple principles in order to be EFFECTIVE.

Yes, you can drive 50,000 visitors a month and only get 3 to 5 phones calls or emails.
One can also generate 2,000 visitors a month and get 25 to 50 phone calls or emails.

We know because we can generate the later.

The maths is really simple…Less work and 10 times the business walking in the door.

Q: Is it easy to learn SEO tricks?
A: This keeps changing so you need an expert.

Q: Is it easy to learn EFFECTIVE internet marking tricks to get hot prospects clicking on your site?
A: This requires marketing smarts..and a little psychology.

The most common problem people do with their web sites is not doing anything!
Get it up and out there no matter what..It can also be improved and tweaked.
Just the act of editing it occasionally is often all you need to do to get the Googlisation working.

SEO is also misleading…Some keywords are easier than others…how do you know what ones work?
Googlisation for Generating Business requires someone with search engine knowledge plus marketing smarts and checking once a month what people are doing.
A little bit each month is all that is required to knock even big names out of the water(internet searches). You can't just set it up and hope to get to the top and stay at the top.

So we could say focus on the keywords "SEO Sydney" or "SEO Australia" but would that be useful? The clients we want are those that are referred. Again another trick to using the internet is that referrals are King. But how do you generate referrals via the Internet? Too many questions for tonight…Till my nest post….

Regards,

Tom Bizannes
Sydney, Australia

Tuesday, February 02, 2010

How to improve but not change an excel application?

Saw an interesting Excel Application today.

But now have to figure out how to tweak it without changing it too much.
Some parts are really simple..but require some of the code we have done for others..
There are a lot more tricks one can do with the many tabs by having a summary sheet etc.

Was quite impressed how they used the Goal Seek Function - will need to look at how one can code to use the what if functions and add "scenarios" etc....

The watch window is also interesting in that it tells you the current value of a cell or tow - so if you change the value that effects this cell, you can see the value...How this could make it easier for someone or whether we can get these values in code is another story...

SharePoint Document Library Windows Explorer view not showing on Windows Server

This seems to be a Windows 2003 Server issue:

One article says to install the web dav client.

The simpler method to look at first is disabling strict name checking on the sql server.
This is just a registry setting, so it isn’t as much trouble as doing an install.
As per the white paper from Microsoft and also as per this article:
http://www.cleverworkarounds.com/2007/10/15/poor-windows-explorer-view-performance-in-sharepoint/




Regards,
Tom Bizannes
SharePoint Consulting

Sydney, Australia

Thursday, January 28, 2010

SQL Service Integration Services and Excel Pivot Tables

Excel automation on sql server without Excel or third party addons… Is it possible?

Most people will tell you not if you want pivot tables updated.
Accidently found out why when pumping data into ranges, the amounts are put in as text fields, not numbers.
This means the pivot tables don't update!

But there is a simple workaround to make the data numeric rather than text, so the pivot tables work nicely.

We are working on pumping out dozens of spreadsheets with many pivot tables to a SharePoint Extranet.
SSIS is an obvious choice because they want one big excel spreadsheet with many sheets and Reporting Services (even in sql 2008) cannot deliver a professional finish.
* For those unaware of this issue – reporting services pumps out each sub report on a separate sheet but the sheet names cannot be changed from sheet 1,sheet 2 etc…

The end result is a nice SharePoint Extranet reporting solution which goes well with our special Excel SharePoint Extranet creator Application.
What's funny, is how many times you need to find workarounds for Microsoft Products even in the 21st century…like the workaround to update links in excel services etc.

If you have a similar problem and want a nice resolution, let us know.

Regards,

Tom Bizannes

Solutions for Microsoft office and SharePoint


 

Wednesday, January 13, 2010

Massive conversion of hundreds of word templates to Word 2007.

Quite a few tricks had to be used.

Weird items like table alignments etc

We have a nice little excel application that lists all the custom toolbars and commands.

It even created the .dotx files for those without macros in them, saving a lot of work.

Some toolbars would delete from the add-ins menu as they were in the standard toolbar.

We had to run a reset in that case to clear them.

ActiveDocument.CommandBars("Custom toolbar Name").Delete

ActiveDocument.CommandBars("Standard").Reset

If you are planning on migrating your word templates, excel templates or other office applications to Office 2007 why not let us know.

Regards,

Tom Bizannes
http://www.macroview.com.au

Monday, December 21, 2009

Reporting Services saving excel in Excel 97 to Excel 2003 format

 













Thank goodness Sql Server Reporting Services 2008 saves to Excel as FileFormat 56 – e.g. the old but compatible version of excel from 97 through to 2003.

The principle file format enumerations in Excel 2007 are:

  • 51 = xlOpenXMLWorkbook (macro-free Excel 2007 workbook, .xlsx)
  • 52 = xlOpenXMLWorkbookMacroEnabled (Excel 2007 workbook with or without macros, .xlsm)
  • 50 = xlExcel12 (Excel 2007 binary formatted workbook, with or without macros, .xlsb)
  • 56 = xlExcel8 (Excel 97 through Excel 2003 formatted files used in Excel 2007, .xls)
  • 6 = .csv
  • -4158 = text
Just go into the vba window (alt-F11) after opening the workbook and type thisworkbook.FileFormat.

Regards,

Tom Bizannes
Excel development
Sydney, Australia
http://www.macroview.com.au

Thursday, October 22, 2009

How to add a hyperlink on a intranet to open an access database

Using a unc path with file: in front of the unc path should do it.
e.g. File://Servername/ShareName/Folder/../something.mdb

You can even use the above method to point to a shortcut.
Noting that shortcuts end in .lnk (that's a L not a capital i)
e.g. File://Servername/ShareName/Folder/ShortcutToDatabase.lnk

That way you can specify the link to run the 2003 or 2007 version of access and to open in shared mode – so no locked out users.

The biggest issue is probably that spaces might need to be %20 instead .

Tom Bizannes
Microsoft Access Design and Development
Sydney, Australia
http://www.macroview.com.au

Tuesday, October 06, 2009

Excel Toolbars

Note: Make the toolbar more robust:

Call your proc but add the full path as per the workbook with the code

.OnAction = "'" & ThisWorkbook.Path & "\" & ThisWorkbook.Name & "'!SystemInfo"

eg
Public Sub Auto_Open()
Dim cBar As commandbar
Dim cbarReports As commandbar
Dim myControl As CommandBarButton

For Each cBar In Application.CommandBars
If cBar.Name = "Toolbar_Name" Then
cBar.Delete
End If
Next cBar

Set cbarReports = CommandBars.Add("Toolbar_Name")
'Add System button
Set myControl = cbarReports.Controls.Add(Type:=msoControlButton)

With myControl
.Style = msoButtonCaption
.BeginGroup = True
.Caption = "About"
.OnAction = "'" & ThisWorkbook.Path & "\" & ThisWorkbook.Name & "'!SystemInfo"
End With

End Sub

Thursday, June 18, 2009

Themes and Colors in Office 2007

Did some really cool stuff to overcome limitations in Excel 2007 with coloring of charts...

Colors and themes are interesting and found these links really good.

When people first starting using themes in office 2007, they get can easily get confused about the new coloring and font themes you can create, but once you get hte hang of these, you can create charts and documents with real pizazz!

http://www.colorschemer.com/online.html

http://colorschemedesigner.com/

Nightmare presenting at the SharePoint User Group

Presented at the SharePoint User Group on Tuesday 17th June.

The topic was The need for speed and recovery...based on a sql perspective...

Was heckled by both the co-ordinator and another bloke as they were adamant that Sql Backups of SharePoint couldn't be trusted even though they had never had issues with clients and Microsoft had never advised them otherwise.

So how does one handle such heckling...It even went so far as the SharePoint MVP saying he didn't believ in sql log backups and simple recovery mode was the only way to go!

What an &^*&*&( ...say no more....so many people are ignorant of sql server and when they see a realy large log file they think, krap...The log file doesn't grow out of control unless people don't do log backups....

So how does one handle hecklers? Hammer them for more specifics or say that's off the topic tonight, we can get back to you on a break...

Also, looked up books on speaking and there are some good ones that help you get your presentation across....Some reading is now in order...

One book kind of sums up how to present by it's title alone...Presenting with 7 slides or less..
I had 30 slides and was juping all over the place....

Below, then, are links to articles which offer good advice for handling difficult audience members, even hecklers.
Dealing with difficult speaking situations (work911.com)
Advice from 3M on dealing with Hecklers (3M website)
Dealing with disruptive audience members (from Speakernet News)
How to handle difficult audiences (presentation-pointers.com)
Handling various forms of audience disruption (refresher.com)
Dealing with difficult audiences (effectivemeetings.com)
Dealing with difficult negotiators (negotiatelikethepros.com)
Presenting to difficult audiences (helpforschools.com)
Dealing with tough questions (findarticles.com)
Do's and don'ts for dealing with difficult people (findarticles.com)
Dealing with difficult people (findarticles.com)
Dealing with hecklers and "snipers" (findarticles.com)
Advice for stand-up comics (jessethecomic.com)
The BBC on why people heckle