(Beginner) Changing column properties for specific rows
I am tracking staff training and have dates for when staff are scheduled for training and have columns as date format.
at the top or bottom of the sheet, i would like to do a count of total staff scheduled or completed for that column, however, because i've set the column as date, it changes any numbers i input to as a date.
is there a way to change the properties of specific cells/rows?
Comments
-
Unfortunately column types are for the entire column. You cannot change the type for a specific cell or row. Feel free to submit a product enhancement request though.
However... Converting the numerical value to text will allow that number to be displayed. It would just have to be converted back to a numerical value using a VALUE function before it can be used as a number in other calculations.
To convert a number (for example 42) from a numerical value to a text string, you could do it one of two ways.
1. Either add + "" (plus double quotes) to the end of the number You can also put this at the end of a formula if that formula is generating a number):
=42 + ""
2. Or you can just wrap the number itself in quotes (this works ONLY for manually entered numbers/you would have to use method 1 if a formula is involved):
="42"
-
this is a great tip and worked. however, when you are then trying to use that cell in a formula, it no longer recognizes it as a number, but now just a string of text and formulas dont work?
ie.
A1= 42 + ""
B1 = 8 + ""
sum(A1:B1) = ???
-
Correct. Sorry. I tucked that little bit away in the middle of my last post. I should have expanded on it a little more.
The data is now stored as a text string. You would need to use the VALUE function within your formula to convert it back to a number.
=SUM(VALUE(A1), VALUE(B1))
-
Above has helped in my query as well but what if the value is multiple? For example, I want a total of whole column and each cell property is in date format. How would you use Value function for whole column?
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives