# Fulltext Index missing numeric properties

**URL:** https://community.neo4j.com/t/fulltext-index-missing-numeric-properties/15204
**Category:** Neo4j Graph Platform
**Tags:** index
**Created:** [March 1, 2020, 8:39am UTC](https://community.neo4j.com/t/fulltext-index-missing-numeric-properties/15204 "2020-03-01T08:39:41Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![alizadehei](https://sea1.discourse-cdn.com/flex021/user_avatar/community.neo4j.com/alizadehei/32/9488_2.png) [@alizadehei](https://community.neo4j.com/u/alizadehei)
#### Post date: [March 1, 2020, 8:39am UTC](https://community.neo4j.com/t/fulltext-index-missing-numeric-properties/15204/1 "2020-03-01T08:39:41Z")

</div>

Hi,

I have created a fulltext index like so:

CALL db.index.fulltext.createNodeIndex("PersonIndex",["Person"],["age"])

the "age" is a numeric property. query on this index not worked.  
If we consider age as a string property, then range searching like "age:[20 TO 30]" does not give the correct answer.

What is the best solution for storing numeric properties?

---

<div class="post-metadata">

### Author: ![stefan.armbruster](https://sea1.discourse-cdn.com/flex021/user_avatar/community.neo4j.com/stefan.armbruster/32/74_2.png) [@stefan.armbruster](https://community.neo4j.com/u/stefan.armbruster)
#### Post date: [March 1, 2020, 9:26am UTC](https://community.neo4j.com/t/fulltext-index-missing-numeric-properties/15204/2 "2020-03-01T09:26:09Z")

</div>

By design fulltext indexes operate solely on string properties, see [https://neo4j.com/docs/cypher-manual/current/administration/indexes-for-full-text-search/](https://neo4j.com/docs/cypher-manual/current/administration/indexes-for-full-text-search/).

You could either use a schema index (via `CREATE INDEX ...`) to index numeric values or convert the property values to strings and apply a full text index.
