Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Load 'Agnivesh' AS Name AutoGenerate 1;
I am just writing the string as above i want 'Agnivesh ' should be in Bold and want to change the size , can it be possible in the load statement .
Load the text formatting specs as an additional field with your data, for example:
Load 'Agnivesh' AS Name, '<B>' AS NameTextFormat AutoGenerate 1;
If you want to display Name values with specific text formatting in tables and such, add the folowing expression to the TextFormat leaf of the Name dimension:
=NameTextFormat
Best,
Peter
I don't think you can do that in the load statement. But I might very well be wrong, but I doubt its possible.
Best,
Sunny
I don't think it should be possible. Logically why would like to store the size & font of any text, it should matter only while presentation. Don't think even any of database supports this. if you store the content of field in html tag then chances but not sure.
Can you provide a visual output on what you really desire to achieve.
Holding a metadata in a table is a valid approach .However, what you are providing is not enough to make that assumption.
P | C |
53609 | 50000 |
53609 | 50000 |
53609 | 50100 |
53609 | 50100 |
53619 | 52000 |
53619 | 52000 |
53619 | 52000 |
53619 | 52100 |
53619 | 52100 |
I want some values bold .
If you have specific logic to make the values bold or different font color, then you could use expression properties.
Expand expression under Expressions Tab, you can see multiple options.
Load the text formatting specs as an additional field with your data, for example:
Load 'Agnivesh' AS Name, '<B>' AS NameTextFormat AutoGenerate 1;
If you want to display Name values with specific text formatting in tables and such, add the folowing expression to the TextFormat leaf of the Name dimension:
=NameTextFormat
Best,
Peter