Questions tagged [cell]

A cell is an atomic element within a structure composed of columns and/or rows, such as a table or grid. For questions regarding cell arrays in MATLAB, the tag [cell-array] should be used.

Cell is a basic term that was introduced by spreadsheet programs like Excel, Lotus, etc.. It is also associated with tables in HTML and Word documents.

Cells can contain hard-coded values, computed values based on functions, visualizations based on computed values, or external objects.

For questions regarding cell arrays in MATLAB, the tag should be used.

References

5093 questions
1
vote
0 answers

changing cell backcolor of Datagridview with events

what i gonna show u now is a part from bigger program but in this part i have problem. so in image below there is 3 controls combobox, button and datagridview [enter image description here][1] when i click the button the text in the combobox added…
Joe Kad
  • 11
  • 3
1
vote
2 answers

Unable to change static UITableViewCell height

I'm using a static table view which contains 3 different cells. And when a button in the first cell is tapped, the height of the first cell should increase. Below is the function called when the button is tapped. @IBAction func toggleExpandCamera(_…
Chan Jing Hong
  • 2,251
  • 4
  • 22
  • 41
1
vote
1 answer

VB.Net: Get Cell Address from Row and Column

I know this question has been asked before, but I have tried answers to both of them and neither have worked for me.. Current Code: Dim aString As String Dim address As String For Each thisTriangle In triangleArray drawTriangle(rowToDrawIn,…
Bob
  • 1,344
  • 3
  • 29
  • 63
1
vote
2 answers

Ms EXCEL: Copy contents of Clicked/Active Cell to another Cell

This seems rather an easy task, but somehow nothing has worked since I have tried several solutions to now... I want something, supposing we have this sheet: When a Cell is Clicked randomly, the value/contents of that text should be shown in the…
ErickBest
  • 4,586
  • 5
  • 31
  • 43
1
vote
3 answers

Regular expression to validate Excel cell

I'm working on a php application where the user has to insert an Excel's cell id (for example A1 or AB32), a value which is stored in the database for later use and I'm trying to validate the cell id format using a regular expression, but it just…
Juan Nieve
  • 39
  • 3
1
vote
0 answers

UITableView not updating height automatically in Swift

I have a Main UITableView. I have created a custom UITableviewCell. I have set up another Sub UITableview to be displayed within the Custom Cell. The Main Tableview has expandable and collapsing sections. When any section expands it shows the…
1
vote
2 answers

Creating a .csv file with newlines in single cell in a swift app

I have an issue which i have been at for two days now. I have read tons of documents online but maybe someone can help me here. So in short for those who dont want to read further is i require to import .csv documents to excel with lots of data…
Dmitri K.
  • 197
  • 1
  • 13
1
vote
1 answer

Swiping on UITableViewCell

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) { } func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool { return true } func…
DanieleLanari
  • 101
  • 1
  • 7
1
vote
0 answers

Loss of date accuracy in non date formatted cells using POI

I have a spreadsheet with the date 20160831. Up until now I was using: if (Cell.getCellType() == Cell.CELL_TYPE_NUMERIC) { if (DateUtil.isCellDateFormatted(cell)) { // parse the date (irrelevant to this question as ^^ is false) }…
anomeric
  • 688
  • 5
  • 17
1
vote
2 answers

VB.Net: Inserting Shape in Certain Cell

I'm attempting to insert a shape at a specific cell, say (5,5) for instance. I am able to get the shape into excel, but can't figure out how to put it in (5,5). After research, I know that shapes sit on top of cells in worksheets. I have also…
Bob
  • 1,344
  • 3
  • 29
  • 63
1
vote
1 answer

Reading a cell value using java or google script

I need a help reading cell value using either java or google script. The cell I am trying to read has a formula. When my script reads the data I get #DIV\0! error. here is my simple script: function readData(){ var Keys =…
1
vote
2 answers

iOS - How to add bubble with text/buttons over cell in UITableView?

I really have no idea how to call this feature, music app had it up to 8.4, it looks like on the screenshot. I want to implement it in my app so when user presses the cell the "bubble" with 2 option buttons shows up. I am interested in how to make…
Adam
  • 1,776
  • 1
  • 17
  • 28
1
vote
2 answers

MATLAB conversion: CELL to DOUBLE; But numbers change

I am reading from an excel file. In one of the columns (which includes only very long numbers), the MATLAB imported it as CELL (because there's a heading). This is the sample imported: '980000684210053338' These are my tries: Converts to DOUBLE…
PM0087
  • 123
  • 1
  • 9
1
vote
1 answer

Paint region of cells Sudoku

I want to paint the square to which a sudoku number selected belongs. This code is for print the rows and columns : //Pintem la fila del nombre seleccionat for (int i = 0; i < parent.getChildCount(); i++) { …
1
vote
1 answer

How to merge two cell array columns with added space in MATLAB

I have two 25557x1 cell arrays, month and time: month = '2015/08/21' '2015/08/21' '2015/08/21' ... time = '08:10:12.0' '08:30:12.0' '08:50:12.0' ... I want to merge the two cell arrays into one so…
Strak
  • 145
  • 1
  • 12