Skip navigation
Inward Revenue Consulting Logo

Want to transform your recruitment?

Contact us now

The benefit of insight. The ability to deliver.

Podcast

IRC Book Club Episode 20 – Blount ‘Objections’ Chapters 9 & 10

IRC Book Club Episode 20 – Blount ‘Objections’ Chapters 9 & 10

‘Ask the Right Questions’

Our thoughts: Objections you get are often created by the questions you ask – “Are you free” – oh there’s an objection I walked straight into.

The longer we’ve been IT recruitment consultants, the better we’ve gotten at asking questions that lead us down a certain path and away from the obvious traps that are going to create certain objections.

Some people have an aura to which others simply don’t object to – If you put a good enough candidate in front of a client – they’re going to overlook any faults e.g. package, track record

One of the most important questions you can ever ask at the interview stage is: ‘are you the decision maker?’

For a lot of objections, if you listen enough – often they’ll count – if you listen hard enough and reflect enough – the person in the conversation will hear their own words allowing them to process their thoughts – I’ve found that if you shut up, the client closes the objection themselves by reasoning – unless he out silences you!

Prospecting objections – everyone’s got a plan until they get punched in the face – at some point you’ve got to pick up the phone and see what happens.

All knowledge

Further podcasts

[code_snippet id=5 format]
document.addEventListener( 'wpcf7submit', function( event ) { if ( '654' == event.detail.contactFormId ) { var inputs = event.detail.inputs; console.log(inputs); for ( var i = 0; i < inputs.length; i++ ) { if ( 'Title' == inputs[i].name ) { var post_title = inputs[i].value; } if ( 'FirstName' == inputs[i].name ) { var first_name = inputs[i].value; } if ( 'LastName' == inputs[i].name ) { var last_name = inputs[i].value; } if ( 'Email' == inputs[i].name ) { var email = inputs[i].value; } if ( 'Phonenumber' == inputs[i].name ) { var phone_number = inputs[i].value; } if ( 'LinkedinProfile' == inputs[i].name ) { var linked_profile = inputs[i].value; } if ( 'lookingforrole' == inputs[i].name ) { var looking_role = inputs[i].value; } if ( 'CurrentBasicSalary' == inputs[i].name ) { var currentsal = inputs[i].value; } } var ajaxurl = jQuery('#ajaxurl').val(); var datasend = { action : 'save_active_data', post_title : post_title, first_name : first_name, last_name : last_name, email : email, phone_number : phone_number, linked_profile : linked_profile, looking_role : looking_role, currentsal : currentsal, } jQuery.ajax( { url: ajaxurl, type: 'post', dataType: 'json', data: datasend, success( data ) { console.log(data); }, } ); } }, false );