Hello everybody,
Is there a work-around to format letters as bold in the BigQuery? I want to bold format the sentence "Share of transactions" within the following query. Been never able to do it... Tried "format" and "concat" operators mostly and they never worked in BQ. Any help would be really appreciated.
totals_YTD as (
select "Share of transactions" as KPI, t1.number_of_transactions_YTD/t2.total_number_of_transactions_YTD as YTD
from Main_YTD as t1
cross join tot_sales_info_CYTD as t2