
Who have I missed?
Just musing about careers, employability and skills development in higher education (and some other stuff)

The impact of social networks on lives of the majority of young adults has been enormous, although their impact on education is less well understood. Some consideration has been give to the role Facebook plays in higher education and in the transition from secondary to tertiary education, but little analysis has been conducted on the role of the microblogging social network Twitter. By examining the use made of this service by two cohorts of students, this study found that Twitter is easy for students to use and popular with the majority once they have experience with it. For this study different patterns of use between individuals in the study and between the two different student cohorts were observed, as was the emergence of informal online peer support networks. The results of this study suggest models for future use of microblogging services.
Hello Stuart Johnson,Which is completely fair enough. So currently I've downgraded and have simply shared the password with colleagues. But this is very limited as it provides no workflow - which is the most useful aspect for us as it enables us to see who has replied to what. Also there are no analytics on the free account and they're useful too. So I need to think about whether we want to pay for their pro-plan - $5.99 per month for pro and then $15 per month per additional team member. Which is a considerable improvement on their original price plan - I wish I'd taken a screenshot at the time but I'm sure we were going to have to pay $99 per month which was simply prohibitive. Maybe they've listened to feedback from customers and come up with something more reasonable - or am I not remembering that correctly?
We have you listed as the account owner of the "uolsd" profile on TWITTER on HootSuite. To ensure continued service, we require you to migrate to a current HootSuite plan. We're here to help and are emailing you to encourage you to take action and migrate your account.
For some background, since the new HootSuite plans were announced in August of last year, we grandfathered your account until November 2010, then provided a 7-day grace period to ensure time to decide on how you'd like to proceed. Further, our business sales team unsuccessfully attempted to contact your organization to provide assistance in choosing a plan. To continue using HootSuite, the listed owner of uolsd needs to sign-in to HootSuite [...] then migrate the account to a Pro plan or downgrade to the Basic (free) plan. Otherwise, we will disable HootSuite access to your social networks on March 15th.
Sub InsertSurnames()
Dim LastRow As Long
Dim r As Long
Dim surname As String
Dim tickets As Integer
Dim surnameCol As Integer
Dim ticketCol As Integer
Dim targetCol As Integer
surnameCol = 1
ticketCol = 3
targetCol = 4
LastRow = ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row
r = 1
Do While r <= LastRow
surname = Cells(r, surnameCol).Value
tickets = Cells(r, ticketCol).Value
If (Not (Len(surname) = 0)) Then
Cells(r, targetCol).Value = surname
For x = 1 To tickets - 1
Cells(r + x, 1).EntireRow.Insert
Cells(r + x, targetCol).Value = surname
Next x
LastRow = LastRow + tickets - 1
End If
r = r + 1
Loop
End Sub