Forum Discussion

Sowjanya_09's avatar
Sowjanya_09
Frequent Visitor
4 years ago
Solved

Hyperlink

Is there any other way to do this ?

I am working on the Help desk ticket report.

I need to create a Hyperlink for the ID column, that hyperlink  needs to be taken to the other website to show  about ticket ID details.  

For that I try to create new column using COMBIN function. but its shwoing error like this

KACE Link = COMBIN({"https://helpdesk.ID=", HD_Ticket[ID],})
 
ERROR:Too few arguments were passed to the COMBIN function. The minimum argument count for the function is 2.

 

  • try this

    link = CONCATENATE("https://helpdesk.ID=", 'HD_Ticket'[ID])

2 Replies

  • Syk's avatar
    Syk
    Resident Rockstar

    try this

    link = CONCATENATE("https://helpdesk.ID=", 'HD_Ticket'[ID])
  • Sowjanya_09's avatar
    Sowjanya_09
    Frequent Visitor

    Thank you That worked well.

    And one more thing is it possible to link that hyperlink with an ID number.

    What I mean is whenever I click on the particular Id number(44495) in the ID column it has to take me to that hyperlink page.