Am trying to fetch data from an api Source and create dash board on daily basis. The source have data some days and somedays doesn't have any data (It is perfectly fine).Whenever there is no data am getting message from API as below . I want to show "No Data" if the api doesnt provide any table value. Any help will be appreciated ![77192-image.png][1] [1]: /answers/storage/attachments/77192-image.png
'''
let
Source = Csv.Document(Web.Contents(" https://abc.com" & Date.ToText(DateTime.Date(DateTime.LocalNow()), "MM/dd/yyyy") & "&csv-format=1"),[Delimiter=",", Columns=15, Encoding=1252, QuoteStyle=QuoteStyle.None]),
"Promoted Headers" = Table.PromoteHeaders(Source, [PromoteAllScalars=true]),
"Changed Type" = Table.TransformColumnTypes(xxxx), #"Renamed Columns" = Table.RenameColumns(xxxx)
in
"Renamed Columns"
'''