In order to reduce the number of text boxes in my gallery, and to avoid using a datatable due to its limited formatting options, I wish to use ideally one text box and space out the entries appropriately. (It looks like table of data). At home, I found using Char(9) to be appropriate, with e.g. "ThisItem.Name & Char(9) & Char(9) & ThisItem.Price" etc., but at work, I find that the Char(9) seems to be equivalent only to a typical space gap. Is there any appropriate and reliable way to appropriately space or pad entries? I did try to do a Left(ThisItem.Name & " ",10), say, but the character spacing differs and can still lead to misaligned entries.