Home Explore Blog CI



nushell

commands/docs/into_value.md
1e5b3d44ccfedb3e0d9f83ca13940f9ee0ccb577d99cd91a00000003000003a0
---
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]

```

Chunks
5b4ba07f (1st chunk of `commands/docs/into_value.md`)
Title: into value Command in Nushell
Summary
The `into value` command in Nushell infers the Nushell datatype for each cell in a table. It can be used on the entire table or specific columns, and it has a flag to display integers as human-readable file sizes.