SOLVED

How to give Alias Name for Column

Brass Contributor

Hi,

 

Can you please help me how to give Alias name for expression column ?

Below is code in Azure LogAnalytics log query:

 

AzureQuota_CL
| project Name_s,CurrentValue_d,Limit_d, ((CurrentValue_d/Limit_d)*100)

 

By default it is taking as column1 but I want to customize column name.

 

Thanks,

Brahma 

2 Replies
best response confirmed by Stanislav Zhelyazkov (MVP)
Solution

@Brahmaiah 

Hi,

It is very simple

 

AzureQuota_CL
| project Name_s,CurrentValue_d,Limit_d, MyColumn = ((CurrentValue_d/Limit_d)*100)
thank you so much Stanislav Zhelyazkov
1 best response

Accepted Solutions
best response confirmed by Stanislav Zhelyazkov (MVP)
Solution

@Brahmaiah 

Hi,

It is very simple

 

AzureQuota_CL
| project Name_s,CurrentValue_d,Limit_d, MyColumn = ((CurrentValue_d/Limit_d)*100)

View solution in original post