Skip to main content

Happiness as a sales tool

Lindsay asks: 'who are your customers?' It's an interesting question, and the answers aren't always as obvious as you might think. If you're shipping software, your customers are the people who buy your software - these are often not the ones who use it.

But, as she says:
The people who pay you, want the people who pay them to be happy.
And that means the people who use your software. If you sell your software through partners, or re-sellers the same applies - your deputies want to deploy your software and have it a success. And annoyed users are a great shortcut to unsuccessful projects.

It all goes back to something I've noticed for a while now - that perceived failure and actual failure are the same thing. If your users don't like the product you build, it's a failure. Even if it helps them solve their problem.

If you always aim to make the users happy, chances are that your ultimate customers will be happy. I think this applies right across the market - from the tiny microISV aimed at the home consumer, to the large enterprise software house selling an abstract product nobody really understands.

As a consequence, I always like to see one feature in your feature set that's solely to make users happy.

As an example, the next version of Context ICE contains a cool new date selection tool. It took about a week to build. We didn't need it - ICE is really good at figuring out dates when they're typed in an input box. But it looks cool, and it makes it just that tiny bit easier to enter dates. And, in our initial random usability tests, it provokes lots of nods and praise.

So sure, consider your customers. Make them happy however you can. Send sexy looking Sales people out to take them to dinner. Put expensive advertisements in targeted periodicals - whatever it takes. All of these tried and true techniques are still worth doing. But if you delight the users, the customers should always be happy. And that might mean adding features and styles that offer no significant benefit to the product, other than to make the users happy.

And once you've got happy users, what then?
Turn them into Salespeople.
Seth Godin explains how.

Comments

Popular posts from this blog

Easter at Blackhead

Camping out on the headland, miles from anywhere. Big swell, off-shore winds, clear crisp nights and smoke from the wood fire. Sometimes it's so rewarding to get out from under the pressure of your life and just be a family of humans.

How to rename an XML Node in C#

This was driving me crazy - here's an easy cut and paste solution to not being able to use the DOM to rename a node for lazy developers like me: public static XmlNode RenameNode (XmlNode node, string namespaceURI,string qualifiedName) { if (node.NodeType == XmlNodeType.Element) { XmlElement oldElement = (XmlElement) node; XmlElement newElement = node.OwnerDocument.CreateElement(qualifiedName, namespaceURI); while (oldElement.HasAttributes) { newElement.SetAttributeNode(oldElement.RemoveAttributeNode(oldElement.Attributes[0])); } while (oldElement.HasChildNodes) { newElement.AppendChild(oldElement.FirstChild); } if (oldElement.ParentNode != null) { oldElement.ParentNode.ReplaceChild(newElement, oldElement); } return newElement; } else { return null; } ...

Democracy in Action...

I have to vote in the US Senate Election Tomorrow. Okay, I don't have to vote, but being an Australian American, voting is something we do. Australia has compulsory voting, which I am overwhelmingly supportive of. People often assume that the point of compulsory voting is to somehow educate people about politics - to force them to have an opinion. The reality has nothing to do with voters, and everything to do with ensuring good governance - By forcing politicians to care about every voter, rather than just the ones who can be bothered to go down to the poll both and vote, it means that politicians are consequently forced to address the needs of all the citizens in the country. Under a non compulsory voting system, it's mainly the wealthy and educated who vote. I was a little shocked to find out that part of the aim of the campaign advertisements that have been confusing me for the last month on TV is not to encourage voters to vote for one candidate or another, but to discou...