I wish I could tell the current column type when I click on Change Column Type. How do I know what it is currently before deciding whether to change it?
Hey @jane.martel!
You should be able to see the column type when initially clicking into the column settings:
Let me know if this helps!
Hi! Thanks for your response. Mine just shows whatever I renamed my column, like this:
Ah yes I see! Whilst the name (that you’ve created for the column) will display at that point, when you’re initially opening the column settings, you should be able to see the column type/ID:
I can understand that it would be helpful if the column type remained consistent throughout the steps so definitely will note this internally for you!
Thank you. RIGHT in front of me! How did I not notice that? I was focused on Change column type, I guess.
No problem at all!
Unfortunately it doesn’t show for me. At the top of my menu is only settings. Any suggestions?
Hey Kyle - can you share a screenshot by any chance?
when i click on the 3 dots in the column this is what i get. Settings is at the top of the pop out not the type of column. thanks in advance for your help.
Thank you for sharing this screenshot! In order to see those column IDs you will first need to activate developer mode via monday labs. You can find this by clicking on your avatar in the bottom left hand corner
Let me know if this helps!
Hi Bianca,
Tracking your thread here, I am also attempting to identify my column type as well.
I have activated Developer Mode, but the columns whose names have been changed but others on my team show the ID as the altered name, not the original. Any more ideas to identify their type?
Thank you!
Hey all, found a much easier way to go about this…
Run this query inside of the API Playground. This will return all Columns with their types and other juicy info you need that’s not apparent.
//Start Query
query {
boards (ids: ) {
columns {
title
id
type
}
}
}
//End Query
Fill in your board ID which is found at the end of the URL
ex. company.monday.com /boards /12345
(had to put spaces since it converts this into a link)
Run this query and save this in a JSON file in your Project
Note. This is at the board level
See more for details
Cheers!
Thank you! Your video really helped.
Great to hear Jane - no problem!
Hello @BiancaT
I have read this tread, and activated the developer mode that only shows the following as first line when clicking the 3 dots in a column header:
</>Column ID: label__1 for example. It does not provide further inormation like the Column_Type., maybe that I am missing something to set up sa that it shows the correct inforation.
I have also used the API Playgroung with Paul’s solution, and even if I can then get the needed information, it is a step that I don’t want at all to run each time I have a doubt on the type of a column.
I think the request to have the Type of the column displayed by default when opening the 3 dots remains valid and should be adressed.