OmniGraffle API: Get Text Data From Shapes

I recently had an exercise where I needed to extract all the text from an OmniGraffle document. The task at hand was to check a beautifully designed organisation chart against a spreadsheet list of staff. Doing this task manually was going to take far too long. There had to be a better way of extracting …

Read more

Python: Empty String To INT

To convert a string to an integer you use the handy int() function. For example, if you have a string such as “79” and you insert this like so into the int() function: int(“79”) you get the result 79. But what happens when you don’t have a string that easily converts into a number? Here …

Read more

Google Sheets: IF Statement Multiple Conditions

One of the first formulas I started with when exploring more about the functionality of spreadsheets is the IF formula. The IF formula is easy to understand and contains only three parameters which are all required. The first parameter is the condition to check, the second is the returned value if the condition is true, …

Read more