Saturday 20 August 2022

iPad Native Keyboard Shortcuts


I've had an iPad for over a decade and always found it's keyboard, particularly the lack of backwards and forwards keys, frustrating. Recently however I got a new model and, quite by accident I discovered a useful shortcut that when I Googled, no-one else seems to have picked up on (or all the people who have are buried below the usual pile of SEO-d crap).

Anyway if you click the "I" key and then the "O" key in quick succession it selects the word the cursor is on or after. 

IO, just like like that!

In other words I-O (I+O?) is like double clicking with a mouse. It's a minor thing but gets me wondering what other hidden combos there are.

I set off trying to find out and then discovered that Apple have, in fact, done something closer to left and right arrow buttons. If you press and hold the space bar the markings blank out and you can then use the keyboard as a track pack. I got that thanks to this video by Steve Katz.

Does anyone know of any others?

Wednesday 3 August 2022

How to get an editable list of all the files in a folder from Windows Explorer

Often you have a lot of files in a folder and for some reason you want to paste them in Word, Excel, Notepad or something else, but a straight select all, copy & paste doesn't work. While solutions exist for that online using the registry editor, they sound a bit foreboding or complicated, or your IT won't et you have permission. 

Here's an easier way: Copy the folder path from the bar in Windows Explorer (e.g. C:/Users/your.name/Documents) and drop it in to the URL bar in MS Edge or Chrome. Et voila! You can then copy and paste the text wherever you want.

If this doesn't work either check you've used "/"s and not "\"s. Secondly try using a different folder and navigating your way there through the folders in Chrome/Edge. 


Friday 1 July 2022

How to Differentiate Between Similar Field Entries


Say you run a series of events and want to display registration, attendance etc on a bar chart in Power BI. The length of the event names and limitations on the Power BI naming fields in bar charts mean that you can't use the name on the Y-axis, and date gives you problems as well. So you go for a variation on the date worked out in a calculated field during the Power Query part of the process.

This is all fine until the day you run two events on the same day. Now Power BI thinks this is just one event. So you need to find someway of telling the difference between the two events, preferably with a reference to the date of the event.

A way to do this is to add a further calculated column using DAX. This will append an a & b (etc.)  onto the date field when there's a clash, but be blank otherwise. Here's the DAX to do that where 

St.Date =
VAR distinctlycounting = COUNTROWS(FILTER(Titles,Titles[Date]=EARLIER(Titles[Date])))
VAR ReIndex = CALCULATE(DISTINCTCOUNT(Titles[Title]),FILTER(Titles,
Titles[Date]=EARLIER(Titles[Date])&&
Titles[Title]<=EARLIER(Titles[Title])))

RETURN IF(distinctlycounting = 1,Titles[Start Date],SWITCH(ReIndex,
1, [Start Date] & "a",
2, [Start Date] & "b",
3, [Start Date] & "c",
4, [Start Date] & "d",
5, [Start Date] & "e",
6, [Start Date] & "f",
7, [Start Date] & "g",
8, [Start Date] & "h"
))

Where the table is called "Titles", the date field is called "Date" and "Start Date" is the calculated field in Power Query.

Obviously you can add more letter variations if you have more events in a single day, or do away with that bit altogether if you just want to use numbers (and you can also get rid of the CONVERT function wrap around as well.

Wednesday 25 May 2022

Joining/Merging Columns in a single step


As per my previous post sometimes, for tidiness you just want to do something in a single step. So how do you do this with merging / joining / concatenating two columns into one in a single step in Power Query. Easy! (when you know how). Just paste this into your Advanced Editor:

 #"Merged Columns" = Table.CombineColumns(Table.TransformColumnTypes(#"Previous Step Name", {{"Column2", type text}}, "en-GB"),{"Column1", "Column2"},Combiner.CombineTextByDelimiter("", QuoteStyle.None),"Column1"),
Where "Previous Step Name" is the name of the previous step, and "Column1" and "Column 2" are the imaginative titles for the two columns you want to merge. This will leave you with a single column called Column 1.

Remove/Replacing part of a string in Power Query


If you like keeping things neat and understandable in Power BI then you probably like to minimise things to one line. So there are times when, yeah, you could create a new IF column and then delete the original and rename it, but you're probably asking "how can I do this in one line of M code?"

Here's a solution for when you're trying to either remove a certain string(s) within a field, (as well as links to one that shows how to replace them).

Remove part of a string in a field
Say I have a field like this:

My Column
Which platforms do you use? Select all that apply
Tick those which work for you. Select all that apply
Which would you recommend? Select all that apply
Which are value for money? Select all that apply
Select all that apply

I want to get rid of all those uses of "Select all that apply". If I use the standard "replace" tool in Power Query it will blank the fifth line and leave the others untouched. I could create a new column here and then delete the original and rename the new one, but to do it in one move I can use this formula in the Advanced Editor:

#"Replaced Value" = Table.TransformColumns(#"Previous Step Name",{{"My Column", each List.Accumulate({{"Select all that apply","XX"}},_,(string,replace) => Text.Replace(string,replace{0},replace{1}))}}),

Where "XX" is the term you are replacing it with (in this case just put "" i.e. blank).* 

It turns out you can also hit several replace terms in one columns at once by adding them into the second set of double curly brackets. So, if I want to replace xx with XX, yy with YY and zz with ZZ in Column1, I can do it like this

#"Replaced Value" = Table.TransformColumns(#"Previous Step Name",{{"Column1", each List.Accumulate({{"xx","XX"},{"yy","YY"},{"zz","ZZ"}},_,(string,replace) => Text.Replace(string,replace{0},replace{1}))}}),

Alternatively if you want to hit multiple fields you can do that too.  So, if I want to replace xx with XX in column1, and bb with BB in Column2 I can write:

#"Replaced Value" = Table.TransformColumns(#"Previous Step Name",{
{"Column1", each List.Accumulate({{"xx","XX"}},_,(string,replace) => Text.Replace(string,replace{0},replace{1}))},
{"Column2", each List.Accumulate({{"bb","BB"}},_,(string,replace) => Text.Replace(string,replace{0},replace{1}))}
}),

And obviously you can do both together if you wish.


*I found this info in the comments to the two videos included in this blog post by Guru G. The blog post itself covers two similar operations, 1. Removing multiple single characters from a field (video) & 2. Replacing a strings within a field with another string (video). 

Edit
Here's another simpler way from The Biccountant which is closer to the code you get if you use the standard tool.

= Table.ReplaceValue(#"Previous Step Name", each [Text to remove], "" ,Replacer.ReplaceText,{"Field to remove it from"})
Where the field containing the info you want to remove is called [Text to remove] and the field you are removing it from is called [Field to remove it from].

If you want to replace it with a specific value you just write a word or phrase in text in double quotes.
Alternatively, rather than a blank or text you can replace with the contents of another field, you just add this into the 3rd term like so:
= Table.ReplaceValue(#"Previous Step Name", each [Text to remove], each [Text to replace with], Replacer.ReplaceText,{"Field to remove it from"})
Where [Text to replace with] is the new field you want to replace with.

Friday 1 April 2022

Regex Differs Between Google Analytics and Google Search Console

If you're working with both Google Analytics and Google Search Console you've probably tried at some stage to get your head around regex. Regex is brilliant and is well worth investing time into getting to know. It's used by numerous platforms, but does vary a little from platform to platform.

However, Google takes things a step further. Regex is different on Google Analytics than it is in Google Search Console. 

This is particularly noticeable if you're trying to filter your search by URL and want to use markers to tie your needle to either the start or the end of the URL. Ordinarily you use a caret ^ to tie your search term to the start of the available text (or line), and a dollar sign $ to tie to the end. But Google complicates this.

So for Google Analytics if you want to find only those pages ending in your search term you use the $. If you want to make sure that this comes straight off the homepage you only need to include the caret - no need to refer to the stem. So if your domain is https://www.datageek.com using
^/news/$
Will find solely https://www.datageek.com/news/, no sub pages and not others like https://www.datageek.com/someothersection/news/

To do the same in Google Search Console though seems to want you to account for the variations in the stem, So to do the same as the above in Search Console you have to use
h.*datageek\.com/news/$
You would think Google would just choose one, but apparently not...

Friday 1 November 2019

Replace markers with a style

There's a useful blog post here on how to convert text formatted in a certain way in MS Word with something else. What it doesn't do, though, is show you how to do the reverse. The process is broadly similar but you just need to set up your find and replace box like this

This will find anything between a "¬" and a "|" (pipe mark, next to the z on a UK keyboard) and replace it in blue.

A couple of things to note.

- Firstly the reason I've used "¬" & "|" is that other marks such as "@", "~", "#", "<" and ">" may not work for you (for various reasons), but it doesn't have to be those two, feel free to find what works for you. You may need to use Find and Replace beforehand to get these two in position

- Secondly, it won't replace the "¬" & "|" you'll have to go and do that afterwards.

The joys of a Microsoft product.

Tuesday 10 April 2018

Transaction Assignments / Assignment Filters in Online Express


If you've poked about curiously within the back end of Raiser's Edge Online Express you may have come across the Transaction Assignments / Assignment Filters area within Account Integration Options. There's criminally little support documentation for Online Express, but this area in general seems to have nothing at all in it, not even a knowledgebase article. There are a couple of pieces for the equivalent documentation for Net Community and Sphere. And of course, there's trial and error.

Essentially this only works for donations at the moment - it doesn't work for event transactions (or email obviously). It also doesn't allow you to exclude certain security groups to be able to see it. This is a big Data Protection concern within Online Express but the Blackbaud team don't appear overly concerned to fix it.

What it does
What it does allow you to do is to make life easier for certain groups of people. If you have two different teams processing two different sets of donations you can move a bunch of them out of their way, so they just see the relevant ones.

How to do it
To do this you need to create an assignment filter on the screen above. You can choose a security group (step 1) and filter in on the basis of Fund, Appeal or Donor surname (!?) (step 2), choosing the criteria (e.g. which fund etc.) in step 3.

On the second tab (below) you can add groups who you still want to be able to view and process all transaction. The last two boxes are the ones that matter. If you tick "Show unassigned transactions tab" a new tab appears in the "Download transactions" window. The original tab only contains those you filter in. All the rest appear in the new one.

The second box lets you make the other (non-relevant transactions) read only so only approved staff can process them.

Thursday 22 February 2018

Speeding Up Adding Guests to RE Events


I've had a query from someone who is finding adding guests to a host very frustrating. Here are the details:
I'm working on an event and need to add in a large number of guests, but can't I access the guest's participant record from the guest button on the bottom of the primary participants record.  On the host's record I can add each guest in and mark them as attended (or not) and registered (or not), but nothing else.

In order to do that I then have to either look them up from the main event record, open them up, and update them OR I have to click on their entry in the whole list to select each one, update them, get back to host's record, and then use the button to get to the next person, etc.
I do have a marginally less annoying method. If you go to the Participants tab of the event and then change the drop down button top left to "New guests" (above) then that takes you through to the page below (left) where you enter names and addresses.  Then when you save that it returns you to the participant record page (below right) already expecting a guest.
It's not ideal, but I think it might be better than the more "intuitive" options.

Thursday 2 November 2017

RE: Making a Business Rule Inactive

Business Rules are really useful feature of The Raiser's Edge, but at present there is no simple way to make them inactive, or temporarily suspend them. There is a work around however.

Firstly you need to set up a blank Security group - Go to Admin/Security/New Group to do this.

If you want to play it extra safe, untick all the boxes on the left. The crucial point is not to add any of your users into the Group Members field in the middle


Now you need to go the Business rule itself (Config/Business Rules/User Defined Rules) open it up...

 Now tick "Apply Rule to Selected Security Groups Only" and choose the security group you created above.

In effect this applies the rules to no actual real users, but as far as RE is concerned there is a user group that the rule is applied to so it's happy.