Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
542 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Software ==> | SSRS Reporting Services (99 exercises) |
Topic ==> | Embedding code (3 exercises) |
Level ==> | Harder than average |
Subject ==> | SSRS training |
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
This will generate the database that you'll need to use in order to do this exercise (note that the database and script are only to be used for exercises published on this website, and may not be reused or distributed in any form without the prior written permission of Wise Owl).
Create a report called Five Words to list out film names and their truncated synopses. To do this, create and use an embedded code function to return the first n words of each film's synopsis (where n can be any integer):
Here we're showing the first 5 words of each film's synopsis.
The expression for the second column's textbox above could be:
This expression finds the first 5 words of the given field.
This is anything but straightforward - if you want some help with the VB coding, turn the page!
Here's an example of a function which would do the trick (if you copy it into the Report Properties dialog box, you will, of course, lose all the formatting):
Function Prefix(What As String, PrefixCount As Integer) As String
'arguments:
'WHAT - the film synopsis or other string of text passed in
'PREFIXCOUNT - the number of words to return
'split the text passed into an array of single words
Dim Words() As String = What.Split(" ")
'create a variable to hold the final prefix
Dim StartString As String = ""
'loop over all of these words, adding each to the prefix ...
Dim i As Integer = 0
Dim Word As String
For Each Word In Words
'add 1 to the count of number of words
i += 1
'add this word onto list accumulating
StartString &= " " & Word
'if we've reached the maximum number of words requested, stop
If i >= PrefixCount Then
'add ellipsis (...) if not reached limit
If i < Words.Length Then StartString &= " ..."
Exit For
End If
Next
'strip off leading space, and return
Return StartString.Trim
End Function
Ask your friendly tutor if this code doesn't make sense!
You can find other training resources for the subject of this exercise here:
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.