Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to be able to genreate a list of different statistics ... can I use a linefeed and a textobject..
Sum of sales: $28833
Sales Staff: 48
Is there a way I can put a line feed in
= 'Sum of Sales: ' & Sum(sales) (linefeed)
& "Sales Staff: " & TotalCount(sales_staff)
thanks!
Semantic Desinger
'Sum of Sales: ' & Sum(sales) & chr(13) & "Sales Staff: " & TotalCount(sales_staff)
Regards
Søren
'Sum of Sales: ' & Sum(sales) & chr(13) & "Sales Staff: " & TotalCount(sales_staff)
Regards
Søren