---
title: into value
categories: |
filters
version: 0.104.0
filters: |
Infer Nushell datatype for each cell.
usage: |
Infer Nushell datatype for each cell.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `into value` for [filters](/commands/categories/filters.md)
<div class='command-title'>Infer Nushell datatype for each cell.</div>
## Signature
```> into value {flags} ```
## Flags
- `--columns, -c {list<any>}`: list of columns to update
- `--prefer-filesizes, -f`: For ints display them as human-readable file sizes
## Input/output types:
| input | output |
| ----- | ------ |
| table | table |
## Examples
Infer Nushell values for each cell.
```nu
> $table | into value
```
Infer Nushell values for each cell in the given columns.
```nu
> $table | into value -c [column1, column5]
```