# How to remove the default buffer fields/ columns

**URL:** https://community.synatic.com/t/how-to-remove-the-default-buffer-fields-columns/257
**Category:** Calculators
**Tags:** calculator, helper-functions, buffer
**Created:** [June 29, 2022, 10:55am UTC](https://community.synatic.com/t/how-to-remove-the-default-buffer-fields-columns/257 "2022-06-29T10:55:13Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![navessa](https://yyz2.discourse-cdn.com/flex032/user_avatar/community.synatic.com/navessa/32/58_2.png) [@navessa](https://community.synatic.com/u/navessa)
#### Post date: [June 29, 2022, 10:55am UTC](https://community.synatic.com/t/how-to-remove-the-default-buffer-fields-columns/257/1 "2022-06-29T10:55:13Z")

</div>

**Buffers contain 2 default fields which are “\_id” field and the “\_dateUpdated” field.**

If you don’t require these fields from your Buffer source step, you can delete the fields by adding a Calculator step after the Buffer source step. Type out the highlighted code in your Calculator step and click on Save to delete those fields as shown in the image below.

![image](https://canada1.discourse-cdn.com/flex032/uploads/synatic/original/1X/338f08f22a492b1680caff1e49107086cfa294bd.png)

The below is the code to copy and paste in your Calculator step:

```auto
let inputRecord=input.record;
delete inputRecord._id;
delete inputRecord._dateUpdated;
return inputRecord;

```
